Administrator
16 hours ago 55d9851cf1be6cc0aa9dbf2d23a6e87cca915772
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
package cc.mrbird.febs.ai.entity;
 
import cc.mrbird.febs.common.entity.AiBaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
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;
 
    @TableField(exist = false)
    private String companyName;
}