| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- 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;
- }
- }
|