| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- package com.usky.data.domain;
- import java.time.LocalDateTime;
- import java.io.Serializable;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- /**
- * <p>
- * 数据中心_接口调用日志表
- * </p>
- *
- * @author fyc
- * @since 2026-01-24
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- public class DataInterfaceLog implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键ID
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 调用接口ID
- */
- private Long interfaceId;
- /**
- * 执行时间
- */
- private LocalDateTime executeTime;
- /**
- * 操作用户ID
- */
- private String userId;
- /**
- * 请求ip
- */
- private String requestIp;
- /**
- * 请求设备
- */
- private String requestDevice;
- /**
- * 请求类型
- */
- private String requestType;
- /**
- * 请求耗时
- */
- private Integer requestWasteTime;
- /**
- * 接口授权AppId
- */
- private String oauthAppId;
- /**
- * 排序
- */
- private Long sortCode;
- /**
- * 执行结果
- */
- private String executeResult;
- /**
- * 执行状态
- */
- private Integer executeState;
- /**
- * 执行消息
- */
- private String executeMsg;
- /**
- * 创建者
- */
- private String createBy;
- /**
- * 创建时间
- */
- private LocalDateTime createTime;
- /**
- * 更新者
- */
- private String updateBy;
- /**
- * 更新时间
- */
- private LocalDateTime updateTime;
- /**
- * 部门ID
- */
- private Long deptId;
- /**
- * 租户ID
- */
- private Integer tenantId;
- }
|