SysOperLogVO.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. package com.usky.system.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.usky.common.core.bean.BaseEntity;
  4. import java.util.Date;
  5. /**
  6. * 操作日志记录表 oper_log
  7. *
  8. * @author ruoyi
  9. */
  10. public class SysOperLogVO extends BaseEntity
  11. {
  12. private static final long serialVersionUID = 1L;
  13. /** 日志主键 */
  14. private Long operId;
  15. /** 操作模块 */
  16. private String title;
  17. /** 业务类型(0其它 1新增 2修改 3删除) */
  18. private Integer businessType;
  19. /** 业务类型数组 */
  20. private Integer[] businessTypes;
  21. /** 请求方法 */
  22. private String method;
  23. /** 请求方式 */
  24. private String requestMethod;
  25. /** 操作类别(0其它 1后台用户 2手机端用户) */
  26. private Integer operatorType;
  27. /** 操作人员 */
  28. private String operName;
  29. /** 部门名称 */
  30. private String deptName;
  31. /** 请求url */
  32. private String operUrl;
  33. /** 操作地址 */
  34. private String operIp;
  35. /** 请求参数 */
  36. private String operParam;
  37. /** 返回参数 */
  38. private String jsonResult;
  39. /** 操作状态(0正常 1异常) */
  40. private Integer status;
  41. /** 错误消息 */
  42. private String errorMsg;
  43. /** 操作时间 */
  44. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  45. private Date operTime;
  46. public Long getOperId()
  47. {
  48. return operId;
  49. }
  50. public void setOperId(Long operId)
  51. {
  52. this.operId = operId;
  53. }
  54. public String getTitle()
  55. {
  56. return title;
  57. }
  58. public void setTitle(String title)
  59. {
  60. this.title = title;
  61. }
  62. public Integer getBusinessType()
  63. {
  64. return businessType;
  65. }
  66. public void setBusinessType(Integer businessType)
  67. {
  68. this.businessType = businessType;
  69. }
  70. public Integer[] getBusinessTypes()
  71. {
  72. return businessTypes;
  73. }
  74. public void setBusinessTypes(Integer[] businessTypes)
  75. {
  76. this.businessTypes = businessTypes;
  77. }
  78. public String getMethod()
  79. {
  80. return method;
  81. }
  82. public void setMethod(String method)
  83. {
  84. this.method = method;
  85. }
  86. public String getRequestMethod()
  87. {
  88. return requestMethod;
  89. }
  90. public void setRequestMethod(String requestMethod)
  91. {
  92. this.requestMethod = requestMethod;
  93. }
  94. public Integer getOperatorType()
  95. {
  96. return operatorType;
  97. }
  98. public void setOperatorType(Integer operatorType)
  99. {
  100. this.operatorType = operatorType;
  101. }
  102. public String getOperName()
  103. {
  104. return operName;
  105. }
  106. public void setOperName(String operName)
  107. {
  108. this.operName = operName;
  109. }
  110. public String getDeptName()
  111. {
  112. return deptName;
  113. }
  114. public void setDeptName(String deptName)
  115. {
  116. this.deptName = deptName;
  117. }
  118. public String getOperUrl()
  119. {
  120. return operUrl;
  121. }
  122. public void setOperUrl(String operUrl)
  123. {
  124. this.operUrl = operUrl;
  125. }
  126. public String getOperIp()
  127. {
  128. return operIp;
  129. }
  130. public void setOperIp(String operIp)
  131. {
  132. this.operIp = operIp;
  133. }
  134. public String getOperParam()
  135. {
  136. return operParam;
  137. }
  138. public void setOperParam(String operParam)
  139. {
  140. this.operParam = operParam;
  141. }
  142. public String getJsonResult()
  143. {
  144. return jsonResult;
  145. }
  146. public void setJsonResult(String jsonResult)
  147. {
  148. this.jsonResult = jsonResult;
  149. }
  150. public Integer getStatus()
  151. {
  152. return status;
  153. }
  154. public void setStatus(Integer status)
  155. {
  156. this.status = status;
  157. }
  158. public String getErrorMsg()
  159. {
  160. return errorMsg;
  161. }
  162. public void setErrorMsg(String errorMsg)
  163. {
  164. this.errorMsg = errorMsg;
  165. }
  166. public Date getOperTime()
  167. {
  168. return operTime;
  169. }
  170. public void setOperTime(Date operTime)
  171. {
  172. this.operTime = operTime;
  173. }
  174. }