潘志宝
2024-12-16 df99e46312fdd5ee830f1451e478f6658e09f9ed
提交 | 用户 | 时间
8b3ee3 1 package com.iailab.module.model.mpk.entity;
2
3 import com.baomidou.mybatisplus.annotation.TableId;
4 import com.baomidou.mybatisplus.annotation.TableName;
5 import lombok.Data;
6
7 import java.io.Serializable;
8
9 /**
10  * @author PanZhibao
11  * @Description
12  * @createTime 2024年09月22日
13  */
14 @Data
15 @TableName("t_mpk_file_group")
16 public class FileGroupEntity implements Serializable {
17     private static final long serialVersionUID = 1L;
18
19     /**
20      * id
21      */
22     @TableId
23     private String id;
24
25     /**
26      * 菜单
27      */
28     private String menuId;
29
30     /**
31      * 名称
32      */
33     private String name;
34
35     /**
36      * 排序
37      */
38     private Integer sort;
39 }