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
| package cc.mrbird.febs.ai.entity;
|
| import cc.mrbird.febs.common.entity.AiBaseEntity;
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| /**
| * AI产品类别
| *
| * @author yourname
| * @date 2025-07-29
| */
| @Data
| @TableName("ai_product_category")
| public class AiProductCategory extends AiBaseEntity {
| /**
| * 公司ID (UUID)
| */
| private String companyId;
|
| /**
| * 编码
| */
| private String code;
|
| /**
| * 名称
| */
| private String name;
|
| /**
| * 背景图片
| */
| private String backImg;
|
| /**
| * 小图标
| */
| private String iconImg;
|
| /**
| * 排序
| */
| private Integer sort;
|
| /**
| * 状态 0-禁用 1-启用 2-已删除
| */
| private Integer state;
|
| /**
| * 是否推荐到首页 1-推荐 0-不推荐
| */
| private Integer hotState;
| private Integer level;
| private String parentId;
| }
|
|