Administrator
5 days ago 90ba2873de753917a21874e0ce21dd1578c2be5a
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
package cc.mrbird.febs.yinhe.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
/**
 * 智能体分类表 ai_sys_agent_category
 *
 * @author ruoyi
 */
@Data
@TableName("sys_agent_category")
public class YhSysAgentCategory extends YhBaseEntity
{
    /** 主键 */
    private String id;
 
    /** 公司ID */
    private String companyId;
 
 
    /** 名称 */
    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;
 
    /** 父级ID */
    private String parentId;
 
}