SysOperLog.java 5.2 KB

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