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;
|
}
|
}
|