Administrator
2026-03-20 e8c7a97949f5a582ca5e3e5d787bf64f5fa01767
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cc.mrbird.febs.yinhe.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("ai_logo")
public class YHAiLogo extends YhBaseEntity {
 
    private String id;
    private String companyId;
    private String name;
    private String imageUrl;
 
    //状态 0-禁用 1-启用
    private Integer state;
    private String desription;
}