peternameyakj
2024-08-29 ca8e89d46a92b567aa9af2c32ea2951d1e60ca6c
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
package org.example.ssmico.demos.web.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @description 配置表
 * @author BEJSON
 * @date 2024-04-15
 */
@Data
public class TConfiguration implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    /**
     * id
     */
    private Integer id;
 
    /**
     * 配置键
     */
    private String configKey;
 
    /**
     * 配置值
     */
    private String configValue;
 
    /**
     * 创建时间
     */
    private Date createdAt;
 
    /**
     * 更新时间
     */
    private Date updatedAt;
 
    public TConfiguration() {}
}