package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiParam; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; import java.io.Serializable; /** * BisInspLogParam * * @author lune * @date 2019-3-7 */ public class BisInspLogParam extends PageParam implements Serializable { // 主键 @ApiParam(name = "主键") private String logId; // 用户ID @ApiParam(name = "用户ID") private String userId; // 操作时间 @ApiParam(name = "开始时间") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") private Date sttm; @ApiParam(name = "结束时间") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") private Date entm; // 操作内容 @ApiParam(name = "操作内容") private String content; // 路径 @ApiParam(name = "路径") private String path; private String source; private String ipAddr; private String appModel; private String username; private String method; // 操作时间 @ApiParam(name = "开始时间") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") private Date intm; public String getMethod() { return method; } public void setMethod(String method) { this.method = method; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getAppModel() { return appModel; } public void setAppModel(String appModel) { this.appModel = appModel; } public String getSource() { return source; } public void setSource(String source) { this.source = source; } public String getIpAddr() { return ipAddr; } public void setIpAddr(String ipAddr) { this.ipAddr = ipAddr; } public BisInspLogParam() { } public String getLogId() { return logId; } public void setLogId(String logId) { this.logId = logId; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public Date getSttm() { return sttm; } public void setSttm(Date sttm) { this.sttm = sttm; } public Date getEntm() { return entm; } public void setEntm(Date entm) { this.entm = entm; } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } }