Administrator
2026-03-13 8381bd7af61a2866eac5555c16e1116793ec4e32
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;
}