1
ydj
2024-06-11 14b46ebd008c9f9fbaa0dd43a49783d2f54536a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package org.example.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @program: webSocketProject
 * @description:
 * @create: 2024-03-27 17:01
 **/
@Data
@TableName("data_service_key")
public class DataServiceKey implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
 
    /**
     * id
     */
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    /**
     * key
     */
    private String tokenKey;
 
    /**
     * 是否可用 0:否 1: 是
     */
    private Integer isAvailable;
 
    /**
     * 到期时间
     */
    private Date expirationTime;
 
    /**
     * 添加时间
     */
    private Date startTime;
 
    /**
     * 修改时间
     */
    private Date updateTime;
 
    /**
     * 备注
     */
    private String remark;
 
    public DataServiceKey() {}
}