潘志宝
2024-09-19 bfcca60e2dbf84bce27def31f92e1c99f94a1d6e
提交 | 用户 | 时间
c7f709 1 package com.iailab.module.data.channel.http.entity;
a6de49 2
H 3 import com.baomidou.mybatisplus.annotation.IdType;
4 import com.baomidou.mybatisplus.annotation.TableId;
5 import com.baomidou.mybatisplus.annotation.TableName;
6 import io.swagger.v3.oas.annotations.media.Schema;
7 import lombok.Data;
8
9 import java.io.Serializable;
10 import java.util.Date;
11
12 @Data
bfcca6 13 @TableName("t_http_token")
a6de49 14 public class HttpTokenEntity implements Serializable {
H 15     private static final long serialVersionUID = 1L;
16
17     /**
18      * 主键
19      */
20     @Schema(description = "主键")
21     @TableId(value = "id", type = IdType.INPUT)
22     private String id;
bfcca6 23
24     /**
25      * 接口ID
26      */
a6de49 27     private String apiId;
bfcca6 28
29     /**
30      * 登录地址
31      */
a6de49 32     private String loginUrl;
bfcca6 33
34     /**
35      * ClientId
36      */
a6de49 37     private String clientId;
bfcca6 38
39     /**
40      * ClientSecret
41      */
a6de49 42     private String clientSecret;
bfcca6 43
44     /**
45      * 用户名
46      */
a6de49 47     private String username;
bfcca6 48
49     /**
50      * 密码
51      */
a6de49 52     private String password;
bfcca6 53
54     /**
55      * token
56      */
a6de49 57     private String token;
bfcca6 58
59     /**
60      * 过期时间
61      */
a6de49 62     private Date expireTime;
bfcca6 63
64     /**
65      * 更新时间
66      */
a6de49 67     private Date updateTime;
H 68 }