Administrator
19 hours ago 5e4afaf5e6aeb6e5418c654ee491bdeb5a01e5e9
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
package cc.mrbird.febs.ai.entity;
 
import cc.mrbird.febs.common.entity.AiBaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
@Data
@TableName("ai_company_workflow")
public class AiCompanyWorkflow extends AiBaseEntity {
    /**
     * 公司ID
     */
    private String companyId;
    
    /**
     * 类型 1:亮点 2:建议 3:参考答案 4:知识点总结
     */
    private Integer type;
    
    /**
     * 代码标识
     */
    private String code;
}