This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/domain/log/NtcHttpLog.java

238 lines
4.7 KiB
Java
Raw Normal View History

2018-06-15 12:36:24 +08:00
package com.nis.domain.log;
import com.nis.util.excel.ExcelField;
2018-06-15 12:36:24 +08:00
public class NtcHttpLog extends BaseLogEntity<NtcHttpLog> {
private static final long serialVersionUID = -7697668215327123848L;
@ExcelField(title = "URL", sort = 8)
2018-06-15 12:36:24 +08:00
private String url;
@ExcelField(title = "req_hdr_key", sort = 9)
private String reqHdrKey;// 请求头转储文件key
@ExcelField(title = "req_hdr_file", sort = 10)
2018-06-15 12:36:24 +08:00
private String reqHdrFile;
@ExcelField(title = "req_body_key", sort = 11)
private String reqBodyKey;// 请求体转储文件key
@ExcelField(title = "req_body_file", sort = 12)
2018-06-15 12:36:24 +08:00
private String reqBodyFile;
@ExcelField(title = "res_hdr_key", sort = 13)
private String resHdrKey;// 应答头转储文件key
@ExcelField(title = "res_hdr_file", sort = 14)
2018-06-15 12:36:24 +08:00
private String resHdrFile;
@ExcelField(title = "res_body_key", sort = 15)
private String resBodyKey;// 应答体转储文件key
@ExcelField(title = "res_body_file", sort = 16)
2018-06-15 12:36:24 +08:00
private String resBodyFile;
@ExcelField(title = "website", sort = 17)
private String website;// 域名
/* 以下字段无需反馈到界面 */
2018-06-15 12:36:24 +08:00
private Integer c2sIsn;
private Integer pxyFlag;
private Integer httpSeq;
private String reqLine;
private String resLine;
private String cookie;
private String refefer;
private String userAgent;
private String userDefineKey;
private String userDefineValue;
private String contentLen;
private String contentType;
private String setCookie;
2018-06-15 12:36:24 +08:00
public String getReqHdrFile() {
return reqHdrFile;
}
2018-06-15 12:36:24 +08:00
public void setReqHdrFile(String reqHdrFile) {
this.reqHdrFile = reqHdrFile;
}
2018-06-15 12:36:24 +08:00
public String getReqBodyFile() {
return reqBodyFile;
}
2018-06-15 12:36:24 +08:00
public void setReqBodyFile(String reqBodyFile) {
this.reqBodyFile = reqBodyFile;
}
2018-06-15 12:36:24 +08:00
public String getResHdrFile() {
return resHdrFile;
}
2018-06-15 12:36:24 +08:00
public void setResHdrFile(String resHdrFile) {
this.resHdrFile = resHdrFile;
}
2018-06-15 12:36:24 +08:00
public String getResBodyFile() {
return resBodyFile;
}
2018-06-15 12:36:24 +08:00
public void setResBodyFile(String resBodyFile) {
this.resBodyFile = resBodyFile;
}
2018-06-15 12:36:24 +08:00
public Integer getPxyFlag() {
return pxyFlag;
}
2018-06-15 12:36:24 +08:00
public void setPxyFlag(Integer pxyFlag) {
this.pxyFlag = pxyFlag;
}
2018-06-15 12:36:24 +08:00
public String getCookie() {
return cookie;
}
2018-06-15 12:36:24 +08:00
public void setCookie(String cookie) {
this.cookie = cookie;
}
2018-06-15 12:36:24 +08:00
public String getRefefer() {
return refefer;
}
2018-06-15 12:36:24 +08:00
public void setRefefer(String refefer) {
this.refefer = refefer;
}
2018-06-15 12:36:24 +08:00
public String getUserAgent() {
return userAgent;
}
2018-06-15 12:36:24 +08:00
public void setUserAgent(String userAgent) {
this.userAgent = userAgent;
}
2018-06-15 12:36:24 +08:00
public String getUserDefineKey() {
return userDefineKey;
}
2018-06-15 12:36:24 +08:00
public void setUserDefineKey(String userDefineKey) {
this.userDefineKey = userDefineKey;
}
2018-06-15 12:36:24 +08:00
public String getUserDefineValue() {
return userDefineValue;
}
2018-06-15 12:36:24 +08:00
public void setUserDefineValue(String userDefineValue) {
this.userDefineValue = userDefineValue;
}
2018-06-15 12:36:24 +08:00
public String getContentLen() {
return contentLen;
}
2018-06-15 12:36:24 +08:00
public void setContentLen(String contentLen) {
this.contentLen = contentLen;
}
2018-06-15 12:36:24 +08:00
public String getContentType() {
return contentType;
}
2018-06-15 12:36:24 +08:00
public void setContentType(String contentType) {
this.contentType = contentType;
}
2018-06-15 12:36:24 +08:00
public String getSetCookie() {
return setCookie;
}
2018-06-15 12:36:24 +08:00
public void setSetCookie(String setCookie) {
this.setCookie = setCookie;
}
2018-06-15 12:36:24 +08:00
public Integer getC2sIsn() {
return c2sIsn;
}
2018-06-15 12:36:24 +08:00
public void setC2sIsn(Integer c2sIsn) {
this.c2sIsn = c2sIsn;
}
2018-06-15 12:36:24 +08:00
public Integer getHttpSeq() {
return httpSeq;
}
2018-06-15 12:36:24 +08:00
public void setHttpSeq(Integer httpSeq) {
this.httpSeq = httpSeq;
}
2018-06-15 12:36:24 +08:00
public String getUrl() {
return url;
}
2018-06-15 12:36:24 +08:00
public void setUrl(String url) {
this.url = url;
}
2018-06-15 12:36:24 +08:00
public String getReqLine() {
return reqLine;
}
2018-06-15 12:36:24 +08:00
public void setReqLine(String reqLine) {
this.reqLine = reqLine;
}
2018-06-15 12:36:24 +08:00
public String getResLine() {
return resLine;
}
2018-06-15 12:36:24 +08:00
public void setResLine(String resLine) {
this.resLine = resLine;
}
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 getWebsite() {
return website;
}
public void setWebsite(String website) {
this.website = website;
}
2018-06-15 12:36:24 +08:00
}