SystemLog.java 930 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.kym.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import java.io.Serializable;
  6. /**
  7. * <p>
  8. * 系统操作日志表
  9. * </p>
  10. *
  11. * @author skyline
  12. * @since 2023-07-10
  13. */
  14. @Getter
  15. @Setter
  16. @TableName("t_system_log")
  17. public class SystemLog extends BaseEntity<SystemLog> implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. * 公司ID
  21. */
  22. private Long companyId;
  23. /**
  24. * 用户id
  25. */
  26. private Long userId;
  27. /**
  28. * 操作人
  29. */
  30. private String username;
  31. /**
  32. * ip
  33. */
  34. private String ip;
  35. /**
  36. * 操作名称
  37. */
  38. private String operation;
  39. /**
  40. * 方法
  41. */
  42. private String method;
  43. /**
  44. * 请求参数
  45. */
  46. private String requestParam;
  47. /**
  48. * 执行时长(毫秒)
  49. */
  50. private Long executeTime;
  51. }