161 lines
3.4 KiB
Java
161 lines
3.4 KiB
Java
package com.nis.domain.log;
|
|
|
|
import com.nis.util.excel.ExcelField;
|
|
/**
|
|
*
|
|
*文件离线扫描结果 实体类
|
|
*
|
|
*/
|
|
public class NtcHttpObjScanResultLog extends BaseLogEntity<NtcHttpObjScanResultLog> {
|
|
|
|
private static final long serialVersionUID = -7697668215327123848L;
|
|
|
|
@ExcelField(title = "URL", sort = 8)
|
|
private String url;
|
|
|
|
@ExcelField(title = "req_hdr_key", sort = 9)
|
|
private String reqHdrKey;// 请求头转储文件key
|
|
|
|
@ExcelField(title = "req_hdr_file", sort = 10)
|
|
private String reqHdrFile;
|
|
|
|
@ExcelField(title = "req_body_key", sort = 11)
|
|
private String reqBodyKey;// 请求体转储文件key
|
|
|
|
@ExcelField(title = "req_body_file", sort = 12)
|
|
private String reqBodyFile;
|
|
|
|
@ExcelField(title = "res_hdr_key", sort = 13)
|
|
private String resHdrKey;// 应答头转储文件key
|
|
|
|
@ExcelField(title = "res_hdr_file", sort = 14)
|
|
private String resHdrFile;
|
|
|
|
@ExcelField(title = "res_body_key", sort = 15)
|
|
private String resBodyKey;// 应答体转储文件key
|
|
|
|
@ExcelField(title = "res_body_file", sort = 16)
|
|
private String resBodyFile;
|
|
|
|
@ExcelField(title = "topic_name", sort = 16)
|
|
private String topicName;//原始消息所属的topic
|
|
|
|
@ExcelField(title = "malware_id", sort = 16)
|
|
private Integer malwareId;//恶意文件命中病毒ID
|
|
|
|
@ExcelField(title = "malware_type", sort = 16)
|
|
private String malwareType;//恶意病毒类型
|
|
|
|
@ExcelField(title = "malware_name", sort = 16)
|
|
private String malwareName;//恶意病毒名称
|
|
|
|
|
|
|
|
|
|
public String getReqHdrFile() {
|
|
return reqHdrFile;
|
|
}
|
|
|
|
public void setReqHdrFile(String reqHdrFile) {
|
|
this.reqHdrFile = reqHdrFile;
|
|
}
|
|
|
|
public String getReqBodyFile() {
|
|
return reqBodyFile;
|
|
}
|
|
|
|
public void setReqBodyFile(String reqBodyFile) {
|
|
this.reqBodyFile = reqBodyFile;
|
|
}
|
|
|
|
public String getResHdrFile() {
|
|
return resHdrFile;
|
|
}
|
|
|
|
public void setResHdrFile(String resHdrFile) {
|
|
this.resHdrFile = resHdrFile;
|
|
}
|
|
|
|
public String getResBodyFile() {
|
|
return resBodyFile;
|
|
}
|
|
|
|
public void setResBodyFile(String resBodyFile) {
|
|
this.resBodyFile = resBodyFile;
|
|
}
|
|
|
|
public String getUrl() {
|
|
return url;
|
|
}
|
|
|
|
public void setUrl(String url) {
|
|
this.url = url;
|
|
}
|
|
|
|
public String getReqHdrKey() {
|
|
return reqHdrKey;
|
|
}
|
|
|
|
public void setReqHdrKey(String reqHdrKey) {
|
|
this.reqHdrKey = reqHdrKey;
|
|
}
|
|
|
|
public String getReqBodyKey() {
|
|
return reqBodyKey;
|
|
}
|
|
|
|
public void setReqBodyKey(String reqBodyKey) {
|
|
this.reqBodyKey = reqBodyKey;
|
|
}
|
|
|
|
public String getResHdrKey() {
|
|
return resHdrKey;
|
|
}
|
|
|
|
public void setResHdrKey(String resHdrKey) {
|
|
this.resHdrKey = resHdrKey;
|
|
}
|
|
|
|
public String getResBodyKey() {
|
|
return resBodyKey;
|
|
}
|
|
|
|
public void setResBodyKey(String resBodyKey) {
|
|
this.resBodyKey = resBodyKey;
|
|
}
|
|
|
|
public String getTopicName() {
|
|
return topicName;
|
|
}
|
|
|
|
public void setTopicName(String topicName) {
|
|
this.topicName = topicName;
|
|
}
|
|
|
|
public Integer getMalwareId() {
|
|
return malwareId;
|
|
}
|
|
|
|
public void setMalwareId(Integer malwareId) {
|
|
this.malwareId = malwareId;
|
|
}
|
|
|
|
public String getMalwareType() {
|
|
return malwareType;
|
|
}
|
|
|
|
public void setMalwareType(String malwareType) {
|
|
this.malwareType = malwareType;
|
|
}
|
|
|
|
public String getMalwareName() {
|
|
return malwareName;
|
|
}
|
|
|
|
public void setMalwareName(String malwareName) {
|
|
this.malwareName = malwareName;
|
|
}
|
|
|
|
|
|
}
|