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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
| package org.ruoyi.domain;
|
| import com.baomidou.mybatisplus.annotation.*;
| import lombok.Data;
| import lombok.EqualsAndHashCode;
| import org.ruoyi.common.mybatis.core.domain.BaseEntity;
|
| import java.io.Serial;
|
| /**
| * 应用管理对象 chat_gpts
| *
| * @author ageerle
| * @date 2025-04-08
| */
| @Data
| @EqualsAndHashCode(callSuper = true)
| @TableName("chat_gpts")
| public class ChatGpts extends BaseEntity {
|
| @Serial
| private static final long serialVersionUID = 1L;
|
| /**
| * id
| */
| @TableId(value = "id")
| private Long id;
|
| /**
| * gpts应用id
| */
| private String gid;
|
| /**
| * gpts应用名称
| */
| private String name;
|
| /**
| * gpts图标
| */
| private String logo;
|
| /**
| * gpts描述
| */
| private String info;
|
| /**
| * 作者id
| */
| private String authorId;
|
| /**
| * 作者名称
| */
| private String authorName;
|
| /**
| * 点赞
| */
| private Long useCnt;
|
| /**
| * 差评
| */
| private Long bad;
|
| /**
| * 类型
| */
| private String type;
|
| /**
| * 备注
| */
| private String remark;
|
| /**
| * 版本
| */
| @Version
| private Long version;
|
| /**
| * 删除标志(0代表存在 1代表删除)
| */
| @TableLogic
| private String delFlag;
|
| /**
| * 更新IP
| */
| private String updateIp;
|
|
| }
|
|