DataInterfaceLog.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. package com.usky.data.domain;
  2. import java.time.LocalDateTime;
  3. import java.io.Serializable;
  4. import com.baomidou.mybatisplus.annotation.IdType;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. /**
  9. * <p>
  10. * 数据中心_接口调用日志表
  11. * </p>
  12. *
  13. * @author fyc
  14. * @since 2026-01-24
  15. */
  16. @Data
  17. @EqualsAndHashCode(callSuper = false)
  18. public class DataInterfaceLog implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. * 主键ID
  22. */
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Long id;
  25. /**
  26. * 调用接口ID
  27. */
  28. private Long interfaceId;
  29. /**
  30. * 执行时间
  31. */
  32. private LocalDateTime executeTime;
  33. /**
  34. * 操作用户ID
  35. */
  36. private String userId;
  37. /**
  38. * 请求ip
  39. */
  40. private String requestIp;
  41. /**
  42. * 请求设备
  43. */
  44. private String requestDevice;
  45. /**
  46. * 请求类型
  47. */
  48. private String requestType;
  49. /**
  50. * 请求耗时
  51. */
  52. private Integer requestWasteTime;
  53. /**
  54. * 接口授权AppId
  55. */
  56. private String oauthAppId;
  57. /**
  58. * 排序
  59. */
  60. private Long sortCode;
  61. /**
  62. * 执行结果
  63. */
  64. private String executeResult;
  65. /**
  66. * 执行状态
  67. */
  68. private Integer executeState;
  69. /**
  70. * 执行消息
  71. */
  72. private String executeMsg;
  73. /**
  74. * 创建者
  75. */
  76. private String createBy;
  77. /**
  78. * 创建时间
  79. */
  80. private LocalDateTime createTime;
  81. /**
  82. * 更新者
  83. */
  84. private String updateBy;
  85. /**
  86. * 更新时间
  87. */
  88. private LocalDateTime updateTime;
  89. /**
  90. * 部门ID
  91. */
  92. private Long deptId;
  93. /**
  94. * 租户ID
  95. */
  96. private Integer tenantId;
  97. }