bbb8a327549a749c1014b5132b152d7f3f7d1741.svn-base 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonFormat;
  6. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  7. import io.swagger.annotations.ApiModelProperty;
  8. import org.springframework.format.annotation.DateTimeFormat;
  9. /**
  10. * entity:BisInspLog
  11. *
  12. * @author lune
  13. * @date 2019-3-7
  14. */
  15. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  16. public class BisInspLog extends BaseBean implements Serializable {
  17. @ApiModelProperty("机构id")
  18. private String orgId;
  19. // 主键
  20. private String logId;
  21. @ApiModelProperty("用户id")
  22. private String userId;
  23. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  24. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  25. // 操作时间
  26. @ApiModelProperty("插入时间")
  27. private Date intm;
  28. // 操作内容
  29. @ApiModelProperty("接口说明")
  30. private String content;
  31. // 路径
  32. private String path;
  33. @ApiModelProperty("参数")
  34. private String params;
  35. private String source;
  36. @ApiModelProperty("ip地址")
  37. private String ipAddr;
  38. private String appModel;
  39. private String username;
  40. @ApiModelProperty("发送数据body")
  41. private String requestBody;
  42. @ApiModelProperty("数据回执")
  43. private String responseBody;
  44. @ApiModelProperty("请求方法")
  45. private String method;
  46. private String header;
  47. @Override
  48. public String getOrgId() {
  49. return orgId;
  50. }
  51. @Override
  52. public void setOrgId(String orgId) {
  53. this.orgId = orgId;
  54. }
  55. public String getHeader() {
  56. return header;
  57. }
  58. public void setHeader(String header) {
  59. this.header = header;
  60. }
  61. public String getMethod() {
  62. return method;
  63. }
  64. public void setMethod(String method) {
  65. this.method = method;
  66. }
  67. public String getRequestBody() {
  68. return requestBody;
  69. }
  70. public void setRequestBody(String requestBody) {
  71. this.requestBody = requestBody;
  72. }
  73. public String getResponseBody() {
  74. return responseBody;
  75. }
  76. public void setResponseBody(String responseBody) {
  77. this.responseBody = responseBody;
  78. }
  79. public String getUsername() {
  80. return username;
  81. }
  82. public void setUsername(String username) {
  83. this.username = username;
  84. }
  85. public String getAppModel() {
  86. return appModel;
  87. }
  88. public void setAppModel(String appModel) {
  89. this.appModel = appModel;
  90. }
  91. public String getIpAddr() {
  92. return ipAddr;
  93. }
  94. public void setIpAddr(String ipAddr) {
  95. this.ipAddr = ipAddr;
  96. }
  97. public String getSource() {
  98. return source;
  99. }
  100. public void setSource(String source) {
  101. this.source = source;
  102. }
  103. public String getParams() {
  104. return params;
  105. }
  106. public void setParams(String params) {
  107. this.params = params;
  108. }
  109. public BisInspLog() {
  110. }
  111. public String getLogId() {
  112. return logId;
  113. }
  114. public void setLogId(String logId) {
  115. this.logId = logId;
  116. }
  117. public String getUserId() {
  118. return userId;
  119. }
  120. public void setUserId(String userId) {
  121. this.userId = userId;
  122. }
  123. public Date getIntm() {
  124. return intm;
  125. }
  126. public void setIntm(Date intm) {
  127. this.intm = intm;
  128. }
  129. public String getContent() {
  130. return content;
  131. }
  132. public void setContent(String content) {
  133. this.content = content;
  134. }
  135. public String getPath() {
  136. return path;
  137. }
  138. public void setPath(String path) {
  139. this.path = path;
  140. }
  141. @Override
  142. public String toString() {
  143. return "BisInspLog [" + "logId=" + logId + ", userId=" + userId + ", intm=" + intm + ", content=" + content + ", path=" + path + "]";
  144. }
  145. }