修改联通日志的appLabel字段类型为String
This commit is contained in:
@@ -6,7 +6,7 @@ public class NtcConnRecordLog extends BaseLogEntity<NtcConnRecordLog> {
|
|||||||
|
|
||||||
private static final long serialVersionUID = -4947912502754359817L;
|
private static final long serialVersionUID = -4947912502754359817L;
|
||||||
@ExcelField(title = "social_app", sort = 8)
|
@ExcelField(title = "social_app", sort = 8)
|
||||||
protected Integer appLabel;
|
protected String appLabel;
|
||||||
|
|
||||||
@ExcelField(title = "c2s_pkt_num", sort = 9)
|
@ExcelField(title = "c2s_pkt_num", sort = 9)
|
||||||
protected String c2sPktNum;
|
protected String c2sPktNum;
|
||||||
@@ -20,11 +20,11 @@ public class NtcConnRecordLog extends BaseLogEntity<NtcConnRecordLog> {
|
|||||||
@ExcelField(title = "s2c_byte_num", sort = 13)
|
@ExcelField(title = "s2c_byte_num", sort = 13)
|
||||||
protected String s2cByteNum;
|
protected String s2cByteNum;
|
||||||
|
|
||||||
public Integer getAppLabel() {
|
public String getAppLabel() {
|
||||||
return appLabel;
|
return appLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAppLabel(Integer appLabel) {
|
public void setAppLabel(String appLabel) {
|
||||||
this.appLabel = appLabel;
|
this.appLabel = appLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user