From e1d3a8d84981ab543f0d9b7115fe310d6547dd71 Mon Sep 17 00:00:00 2001 From: wangxin Date: Mon, 17 Dec 2018 18:14:09 +0600 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=81=94=E9=80=9A=E6=97=A5?= =?UTF-8?q?=E5=BF=97=E7=9A=84appLabel=E5=AD=97=E6=AE=B5=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E4=B8=BAString?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/nis/domain/log/NtcConnRecordLog.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }