修改联通日志的appLabel字段类型为String

This commit is contained in:
wangxin
2018-12-17 18:14:09 +06:00
parent 6111463ec3
commit e1d3a8d849

View File

@@ -6,7 +6,7 @@ public class NtcConnRecordLog extends BaseLogEntity<NtcConnRecordLog> {
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<NtcConnRecordLog> {
@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;
}