APP特征配置导入页修改,app payload增加配置导入功能.
This commit is contained in:
@@ -0,0 +1,113 @@
|
||||
package com.nis.domain.configuration.template;
|
||||
|
||||
import com.nis.util.excel.ExcelField;
|
||||
|
||||
/**
|
||||
* APP Payload 导入模板类
|
||||
* @author dell
|
||||
*
|
||||
*/
|
||||
public class AppPayloadTemplate extends ComplexStringAllTemplate{
|
||||
|
||||
// APP PAYLOAD L3_HEADER的特殊属性
|
||||
private String ver;
|
||||
private String ihl;
|
||||
private String tos;
|
||||
private String totalLength;
|
||||
private String flags;
|
||||
private String fragmentOffset;
|
||||
private String protocol;
|
||||
private String icmpType;
|
||||
private String icmpCode;
|
||||
private String icmpIdentifier;
|
||||
private String headerType;
|
||||
|
||||
@ExcelField(title="headerType",align=2,sort=17)
|
||||
public String getHeaderType() {
|
||||
return headerType;
|
||||
}
|
||||
public void setHeaderType(String headerType) {
|
||||
this.headerType = headerType;
|
||||
}
|
||||
|
||||
@ExcelField(title="VER",align=2,sort=18)
|
||||
public String getVer() {
|
||||
return ver;
|
||||
}
|
||||
public void setVer(String ver) {
|
||||
this.ver = ver;
|
||||
}
|
||||
|
||||
@ExcelField(title="IHL",align=2,sort=19)
|
||||
public String getIhl() {
|
||||
return ihl;
|
||||
}
|
||||
public void setIhl(String ihl) {
|
||||
this.ihl = ihl;
|
||||
}
|
||||
|
||||
@ExcelField(title="TOS",align=2,sort=20)
|
||||
public String getTos() {
|
||||
return tos;
|
||||
}
|
||||
public void setTos(String tos) {
|
||||
this.tos = tos;
|
||||
}
|
||||
|
||||
@ExcelField(title="Total Length",align=2,sort=21)
|
||||
public String getTotalLength() {
|
||||
return totalLength;
|
||||
}
|
||||
public void setTotalLength(String totalLength) {
|
||||
this.totalLength = totalLength;
|
||||
}
|
||||
|
||||
@ExcelField(title="Flags",align=2,sort=22)
|
||||
public String getFlags() {
|
||||
return flags;
|
||||
}
|
||||
public void setFlags(String flags) {
|
||||
this.flags = flags;
|
||||
}
|
||||
|
||||
@ExcelField(title="fragment offset",align=2,sort=23)
|
||||
public String getFragmentOffset() {
|
||||
return fragmentOffset;
|
||||
}
|
||||
public void setFragmentOffset(String fragmentOffset) {
|
||||
this.fragmentOffset = fragmentOffset;
|
||||
}
|
||||
|
||||
@ExcelField(title="Protocol",align=2,sort=24)
|
||||
public String getProtocol() {
|
||||
return protocol;
|
||||
}
|
||||
public void setProtocol(String protocol) {
|
||||
this.protocol = protocol;
|
||||
}
|
||||
|
||||
@ExcelField(title="ICMP type",align=2,sort=25)
|
||||
public String getIcmpType() {
|
||||
return icmpType;
|
||||
}
|
||||
public void setIcmpType(String icmpType) {
|
||||
this.icmpType = icmpType;
|
||||
}
|
||||
|
||||
@ExcelField(title="ICMP code",align=2,sort=26)
|
||||
public String getIcmpCode() {
|
||||
return icmpCode;
|
||||
}
|
||||
public void setIcmpCode(String icmpCode) {
|
||||
this.icmpCode = icmpCode;
|
||||
}
|
||||
|
||||
@ExcelField(title="ICMP identifier",align=2,sort=27)
|
||||
public String getIcmpIdentifier() {
|
||||
return icmpIdentifier;
|
||||
}
|
||||
public void setIcmpIdentifier(String icmpIdentifier) {
|
||||
this.icmpIdentifier = icmpIdentifier;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user