diff --git a/src/main/java/com/nis/domain/log/NtcConnRecordLog.java b/src/main/java/com/nis/domain/log/NtcConnRecordLog.java index cb292b588..f6863769d 100644 --- a/src/main/java/com/nis/domain/log/NtcConnRecordLog.java +++ b/src/main/java/com/nis/domain/log/NtcConnRecordLog.java @@ -6,7 +6,7 @@ public class NtcConnRecordLog extends BaseLogEntity { private static final long serialVersionUID = -4947912502754359817L; @ExcelField(title = "social_app", sort = 8) - protected Integer appLabel; + protected String appLabel; @ExcelField(title = "c2s_pkt_num", sort = 9) protected String c2sPktNum; @@ -20,11 +20,11 @@ public class NtcConnRecordLog extends BaseLogEntity { @ExcelField(title = "s2c_byte_num", sort = 13) protected String s2cByteNum; - public Integer getAppLabel() { + public String getAppLabel() { return appLabel; } - public void setAppLabel(Integer appLabel) { + public void setAppLabel(String appLabel) { this.appLabel = appLabel; }