1、http-url添加加日志总量
2、日志添加“是否缺省显示”列 3、service_name对应的国际化优化
This commit is contained in:
@@ -43,7 +43,38 @@ public class BaseLogEntity<T> extends BaseEntity<T> {
|
||||
protected String isLogTotalSearch;//由配置列表点击日志总量进行查询的标识
|
||||
protected String orderBy;//排序参数
|
||||
|
||||
//新增字段
|
||||
protected Integer encapType;//原始二层封装格式
|
||||
protected Integer linkId;//串联设备链路号
|
||||
protected String innerSmac;//MAC_IN_MAC的内层源MAC
|
||||
protected String innerDmac;//MAC_IN_MAC的内层目标MAC
|
||||
|
||||
|
||||
|
||||
public Integer getEncapType() {
|
||||
return encapType;
|
||||
}
|
||||
public void setEncapType(Integer encapType) {
|
||||
this.encapType = encapType;
|
||||
}
|
||||
public Integer getLinkId() {
|
||||
return linkId;
|
||||
}
|
||||
public void setLinkId(Integer linkId) {
|
||||
this.linkId = linkId;
|
||||
}
|
||||
public String getInnerSmac() {
|
||||
return innerSmac;
|
||||
}
|
||||
public void setInnerSmac(String innerSmac) {
|
||||
this.innerSmac = innerSmac;
|
||||
}
|
||||
public String getInnerDmac() {
|
||||
return innerDmac;
|
||||
}
|
||||
public void setInnerDmac(String innerDmac) {
|
||||
this.innerDmac = innerDmac;
|
||||
}
|
||||
public String getOrderBy() {
|
||||
return orderBy;
|
||||
}
|
||||
|
||||
@@ -6,6 +6,53 @@ public class NtcAppLog extends BaseLogEntity<NtcAppLog> {
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 6025543701060412591L;
|
||||
|
||||
protected Integer labelProtoId; //协议类型id
|
||||
protected Integer labelProtoSource; //应用id
|
||||
protected Integer labelBehavId; //行为id
|
||||
protected Integer labelBehavSource;
|
||||
protected Integer labelAppId;
|
||||
protected Integer labelAppSource;
|
||||
|
||||
|
||||
public Integer getLabelProtoId() {
|
||||
return labelProtoId;
|
||||
}
|
||||
public void setLabelProtoId(Integer labelProtoId) {
|
||||
this.labelProtoId = labelProtoId;
|
||||
}
|
||||
public Integer getLabelProtoSource() {
|
||||
return labelProtoSource;
|
||||
}
|
||||
public void setLabelProtoSource(Integer labelProtoSource) {
|
||||
this.labelProtoSource = labelProtoSource;
|
||||
}
|
||||
public Integer getLabelBehavId() {
|
||||
return labelBehavId;
|
||||
}
|
||||
public void setLabelBehavId(Integer labelBehavId) {
|
||||
this.labelBehavId = labelBehavId;
|
||||
}
|
||||
public Integer getLabelBehavSource() {
|
||||
return labelBehavSource;
|
||||
}
|
||||
public void setLabelBehavSource(Integer labelBehavSource) {
|
||||
this.labelBehavSource = labelBehavSource;
|
||||
}
|
||||
public Integer getLabelAppId() {
|
||||
return labelAppId;
|
||||
}
|
||||
public void setLabelAppId(Integer labelAppId) {
|
||||
this.labelAppId = labelAppId;
|
||||
}
|
||||
public Integer getLabelAppSource() {
|
||||
return labelAppSource;
|
||||
}
|
||||
public void setLabelAppSource(Integer labelAppSource) {
|
||||
this.labelAppSource = labelAppSource;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user