Administrator
6 days ago 485c6557ae50afe6703c0b64169ce8eb634b1924
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cc.mrbird.febs.yinhe.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("ai_talk")
public class YHAiTalk extends YhBaseEntity {
 
    /** 主键 */
    private String id;
 
    /** 公司ID */
    private String companyId;
 
    /** 成员ID */
    private String customerId;
 
    /** 智能体ID */
    private String agentId;
 
    /** 类型 1-普通对话 2-员工对话*/
    private Integer type ;
}