Administrator
7 days ago f9e40800aa15abd4cfd2799f334b015e6f13629c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.yinhe.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("ai_company")
public class YHAiCompany extends YhBaseEntity {
 
 
    /** 主键 */
    private String id;
    /**
     * 公司名称
     */
    private String name;
    private String code;
    private String knowledgeId;
    private String categoryId;
}