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;
|
|
}
|