admin
2025-05-29 6ca3d7c61ee8d763f00847d90f4365e348f43078
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package tech.aiflowy.ai.entity.base;
 
import com.mybatisflex.annotation.Column;
import com.mybatisflex.annotation.Id;
 
import com.mybatisflex.annotation.KeyType;
import com.mybatisflex.annotation.Table;
 
import java.io.Serializable;
import java.math.BigInteger;
 
/**
 * ai机器人一级菜单表
 * @TableName ai_first_menu
 */
 
public class AiFirstMenuBase  implements Serializable {
    private static final long serialVersionUID = 1L;
    /**
     * 一级菜单编号
     */
    @Id(keyType = KeyType.Auto, value = "firstMenuId", comment = "一级菜单编号")
    private BigInteger id;
 
    /**
     * 一级菜单名称
     */
    @Column(comment = "一级菜单名称")
    private String firstMenuName;
 
    public BigInteger getId() {
        return id;
    }
 
    public void setId(BigInteger id) {
        this.id = id;
    }
 
    public String getFirstMenuName() {
        return firstMenuName;
    }
 
    public void setFirstMenuName(String firstMenuName) {
        this.firstMenuName = firstMenuName;
    }
}