115 lines
2.1 KiB
Java
115 lines
2.1 KiB
Java
package com.nis.domain.callback;
|
|
|
|
import java.util.Date;
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
|
|
public class ProxyFileHijackCfgAudit {
|
|
|
|
@Expose
|
|
private Long id; //compileId
|
|
@Expose
|
|
private Integer cfgId; //compileId
|
|
@Expose
|
|
private Integer profileId;//compileId
|
|
@Expose
|
|
private Integer action;
|
|
@Expose
|
|
private Integer service;
|
|
@Expose
|
|
private Integer isValid;
|
|
@Expose
|
|
private Date opTime;
|
|
@Expose
|
|
private String profileName;
|
|
@Expose
|
|
private String contentType;
|
|
@Expose
|
|
private String path;
|
|
@Expose
|
|
private String contentName;
|
|
@Expose
|
|
private Long opUser;
|
|
|
|
public Long getOpUser() {
|
|
return opUser;
|
|
}
|
|
public void setOpUser(Long opUser) {
|
|
this.opUser = opUser;
|
|
}
|
|
|
|
public String getContentName() {
|
|
return contentName;
|
|
}
|
|
|
|
public void setContentName(String contentName) {
|
|
this.contentName = contentName;
|
|
}
|
|
|
|
public String getPath() {
|
|
return path;
|
|
}
|
|
|
|
public void setPath(String path) {
|
|
this.path = path;
|
|
}
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public Integer getProfileId() {
|
|
return profileId;
|
|
}
|
|
|
|
public void setProfileId(Integer profileId) {
|
|
this.profileId = profileId;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
public Integer getCfgId() {
|
|
return cfgId;
|
|
}
|
|
public void setCfgId(Integer cfgId) {
|
|
this.cfgId = cfgId;
|
|
}
|
|
public Integer getAction() {
|
|
return action;
|
|
}
|
|
public void setAction(Integer action) {
|
|
this.action = action;
|
|
}
|
|
public Integer getService() {
|
|
return service;
|
|
}
|
|
public void setService(Integer service) {
|
|
this.service = service;
|
|
}
|
|
public Integer getIsValid() {
|
|
return isValid;
|
|
}
|
|
public void setIsValid(Integer isValid) {
|
|
this.isValid = isValid;
|
|
}
|
|
public Date getOpTime() {
|
|
return opTime;
|
|
}
|
|
public void setOpTime(Date opTime) {
|
|
this.opTime = opTime;
|
|
}
|
|
public String getProfileName() {
|
|
return profileName;
|
|
}
|
|
public void setProfileName(String profileName) {
|
|
this.profileName = profileName;
|
|
}
|
|
public String getContentType() {
|
|
return contentType;
|
|
}
|
|
public void setContentType(String contentType) {
|
|
this.contentType = contentType;
|
|
}
|
|
}
|