1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package cc.mrbird.febs.yinhe.entity;
|
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| @Data
| @TableName("ai_agent_start_question")
| public class YHAiAgentStartQuestion extends YhBaseEntity {
|
| /** 主键 */
| private String id;
|
| /** 公司ID */
| private String companyId;
|
| /** 代理ID */
| private String agentId;
|
| /** 问题内容 */
| private String title;
|
| }
|
|