日志导出数据最大提示调整

Stream导出优化
This commit is contained in:
leijun
2018-12-17 05:20:31 +08:00
parent b294a8ced0
commit 7eb4a018c1
3 changed files with 81 additions and 28 deletions

View File

@@ -14,13 +14,11 @@ import com.wordnik.swagger.annotations.ApiModelProperty;
*/
public class DkBehaviorLog extends BaseLogEntity<DkBehaviorLog> {
private static final long serialVersionUID = -589390375816690510L;
@ExcelField(title="basic_protocol",sort=8)
protected Integer labelProtoId; //协议类型id
protected Integer labelOsId;//操作系统id
protected Integer labelBsId; //浏览器id
@ExcelField(title="behaviour_type",sort=9)
protected Integer labelBehavId; //行为id
@ExcelField(title="social_app",sort=10)
protected Integer labelAppId; //应用id
protected Integer labelProtoSource; //应用id
protected Integer labelBehavSource; //应用id
@@ -34,8 +32,32 @@ public class DkBehaviorLog extends BaseLogEntity<DkBehaviorLog> {
protected String c2sByteNum;
@ApiModelProperty(value = "s2c字节数", required = true)
protected String s2cByteNum;
@ExcelField(title="basic_protocol",sort=8)
protected String labelProtoName;
@ExcelField(title="behaviour_type",sort=9)
protected String labelBehavName;
@ExcelField(title="social_app",sort=10)
protected String labelAppName;
public String getLabelProtoName() {
return labelProtoName;
}
public void setLabelProtoName(String labelProtoName) {
this.labelProtoName = labelProtoName;
}
public String getLabelBehavName() {
return labelBehavName;
}
public void setLabelBehavName(String labelBehavName) {
this.labelBehavName = labelBehavName;
}
public String getLabelAppName() {
return labelAppName;
}
public void setLabelAppName(String labelAppName) {
this.labelAppName = labelAppName;
}
public Integer getLabelProtoId() {
return labelProtoId;
}