bca502d019f4a7786b222905577a146497e9a3f9.svn-base 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import io.swagger.annotations.ApiParam;
  5. import org.springframework.format.annotation.DateTimeFormat;
  6. import java.util.Date;
  7. import java.io.Serializable;
  8. /**
  9. * BisInspLogParam
  10. *
  11. * @author lune
  12. * @date 2019-3-7
  13. */
  14. public class BisInspLogParam extends PageParam implements Serializable {
  15. // 主键
  16. @ApiParam(name = "主键")
  17. private String logId;
  18. // 用户ID
  19. @ApiParam(name = "用户ID")
  20. private String userId;
  21. // 操作时间
  22. @ApiParam(name = "开始时间")
  23. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  24. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  25. private Date sttm;
  26. @ApiParam(name = "结束时间")
  27. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  28. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  29. private Date entm;
  30. // 操作内容
  31. @ApiParam(name = "操作内容")
  32. private String content;
  33. // 路径
  34. @ApiParam(name = "路径")
  35. private String path;
  36. private String source;
  37. private String ipAddr;
  38. private String appModel;
  39. private String username;
  40. private String method;
  41. // 操作时间
  42. @ApiParam(name = "开始时间")
  43. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  44. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  45. private Date intm;
  46. public String getMethod() {
  47. return method;
  48. }
  49. public void setMethod(String method) {
  50. this.method = method;
  51. }
  52. public String getUsername() {
  53. return username;
  54. }
  55. public void setUsername(String username) {
  56. this.username = username;
  57. }
  58. public String getAppModel() {
  59. return appModel;
  60. }
  61. public void setAppModel(String appModel) {
  62. this.appModel = appModel;
  63. }
  64. public String getSource() {
  65. return source;
  66. }
  67. public void setSource(String source) {
  68. this.source = source;
  69. }
  70. public String getIpAddr() {
  71. return ipAddr;
  72. }
  73. public void setIpAddr(String ipAddr) {
  74. this.ipAddr = ipAddr;
  75. }
  76. public BisInspLogParam() {
  77. }
  78. public String getLogId() {
  79. return logId;
  80. }
  81. public void setLogId(String logId) {
  82. this.logId = logId;
  83. }
  84. public String getUserId() {
  85. return userId;
  86. }
  87. public void setUserId(String userId) {
  88. this.userId = userId;
  89. }
  90. public String getContent() {
  91. return content;
  92. }
  93. public void setContent(String content) {
  94. this.content = content;
  95. }
  96. public String getPath() {
  97. return path;
  98. }
  99. public void setPath(String path) {
  100. this.path = path;
  101. }
  102. public Date getSttm() {
  103. return sttm;
  104. }
  105. public void setSttm(Date sttm) {
  106. this.sttm = sttm;
  107. }
  108. public Date getEntm() {
  109. return entm;
  110. }
  111. public void setEntm(Date entm) {
  112. this.entm = entm;
  113. }
  114. public Date getIntm() {
  115. return intm;
  116. }
  117. public void setIntm(Date intm) {
  118. this.intm = intm;
  119. }
  120. }