Revert "Revert "Revert "Revert "DK_BEHAVIOR_LOG app_label,拆分5个属性""""
This reverts commit ebef1d32f1.
This commit is contained in:
@@ -12,8 +12,18 @@ import com.wordnik.swagger.annotations.ApiModelProperty;
|
|||||||
*/
|
*/
|
||||||
public class DkBehaviorLog extends LogEntity<DkBehaviorLog> {
|
public class DkBehaviorLog extends LogEntity<DkBehaviorLog> {
|
||||||
private static final long serialVersionUID = -589390375816690510L;
|
private static final long serialVersionUID = -589390375816690510L;
|
||||||
@ApiModelProperty(value = "协议标签", required = true)
|
|
||||||
protected String appLabel;
|
@ApiModelProperty(value = "协议类型ID", required = true)
|
||||||
|
protected Integer labelProtoId;
|
||||||
|
@ApiModelProperty(value = "操作系统ID", required = true)
|
||||||
|
protected Integer labelOsId;
|
||||||
|
@ApiModelProperty(value = "浏览器ID", required = true)
|
||||||
|
protected Integer labelBsId;
|
||||||
|
@ApiModelProperty(value = "行为ID", required = true)
|
||||||
|
protected Integer labelBehavId;
|
||||||
|
@ApiModelProperty(value = "应用ID", required = true)
|
||||||
|
protected Integer labelAppId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "c2s包数", required = true)
|
@ApiModelProperty(value = "c2s包数", required = true)
|
||||||
protected String c2sPktNum;
|
protected String c2sPktNum;
|
||||||
@ApiModelProperty(value = "s2c包数", required = true)
|
@ApiModelProperty(value = "s2c包数", required = true)
|
||||||
@@ -22,12 +32,69 @@ public class DkBehaviorLog extends LogEntity<DkBehaviorLog> {
|
|||||||
protected String c2sByteNum;
|
protected String c2sByteNum;
|
||||||
@ApiModelProperty(value = "s2c字节数", required = true)
|
@ApiModelProperty(value = "s2c字节数", required = true)
|
||||||
protected String s2cByteNum;
|
protected String s2cByteNum;
|
||||||
public String getAppLabel() {
|
|
||||||
return appLabel;
|
/**
|
||||||
|
* @param labelAppId the labelAppId to set
|
||||||
|
*/
|
||||||
|
public void setLabelAppId(Integer labelAppId) {
|
||||||
|
this.labelAppId = labelAppId;
|
||||||
}
|
}
|
||||||
public void setAppLabel(String appLabel) {
|
/**
|
||||||
this.appLabel = appLabel;
|
* @return the labelAppId
|
||||||
|
*/
|
||||||
|
public Integer getLabelAppId() {
|
||||||
|
return labelAppId;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* @param labelBehavId the labelBehavId to set
|
||||||
|
*/
|
||||||
|
public void setLabelBehavId(Integer labelBehavId) {
|
||||||
|
this.labelBehavId = labelBehavId;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return the labelBehavId
|
||||||
|
*/
|
||||||
|
public Integer getLabelBehavId() {
|
||||||
|
return labelBehavId;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param labelBsId the labelBsId to set
|
||||||
|
*/
|
||||||
|
public void setLabelBsId(Integer labelBsId) {
|
||||||
|
this.labelBsId = labelBsId;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return the labelBsId
|
||||||
|
*/
|
||||||
|
public Integer getLabelBsId() {
|
||||||
|
return labelBsId;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param labelOsId the labelOsId to set
|
||||||
|
*/
|
||||||
|
public void setLabelOsId(Integer labelOsId) {
|
||||||
|
this.labelOsId = labelOsId;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return the labelOsId
|
||||||
|
*/
|
||||||
|
public Integer getLabelOsId() {
|
||||||
|
return labelOsId;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param labelProtoId the labelProtoId to set
|
||||||
|
*/
|
||||||
|
public void setLabelProtoId(Integer labelProtoId) {
|
||||||
|
this.labelProtoId = labelProtoId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the labelProtoId
|
||||||
|
*/
|
||||||
|
public Integer getLabelProtoId() {
|
||||||
|
return labelProtoId;
|
||||||
|
}
|
||||||
|
|
||||||
public String getC2sPktNum() {
|
public String getC2sPktNum() {
|
||||||
return c2sPktNum;
|
return c2sPktNum;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -443,7 +443,11 @@
|
|||||||
<result column="d_asn" jdbcType="VARCHAR" property="dAsn" />
|
<result column="d_asn" jdbcType="VARCHAR" property="dAsn" />
|
||||||
<result column="subscribe_id" jdbcType="VARCHAR" property="subscribeId" />
|
<result column="subscribe_id" jdbcType="VARCHAR" property="subscribeId" />
|
||||||
|
|
||||||
<result column="app_label" jdbcType="VARCHAR" property="appLabel" />
|
<result column="label_proto_id" jdbcType="INTEGER" property="labelProtoId" />
|
||||||
|
<result column="label_os_id" jdbcType="INTEGER" property="labelOsId" />
|
||||||
|
<result column="label_bs_id" jdbcType="INTEGER" property="labelBsId" />
|
||||||
|
<result column="label_behav_id" jdbcType="INTEGER" property="labelBehavId" />
|
||||||
|
<result column="label_app_id" jdbcType="INTEGER" property="labelAppId" />
|
||||||
<result column="c2s_pkt_num" jdbcType="VARCHAR" property="c2sPktNum" />
|
<result column="c2s_pkt_num" jdbcType="VARCHAR" property="c2sPktNum" />
|
||||||
<result column="s2c_pkt_num" jdbcType="VARCHAR" property="s2cPktNum" />
|
<result column="s2c_pkt_num" jdbcType="VARCHAR" property="s2cPktNum" />
|
||||||
<result column="c2s_byte_num" jdbcType="VARCHAR" property="c2sByteNum" />
|
<result column="c2s_byte_num" jdbcType="VARCHAR" property="c2sByteNum" />
|
||||||
|
|||||||
Reference in New Issue
Block a user