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
| package jnpf.permission.entity;
|
| import com.baomidou.mybatisplus.annotation.TableField;
| import com.baomidou.mybatisplus.annotation.TableName;
| import jnpf.base.entity.SuperExtendEntity;
| import lombok.Data;
|
| /**
| * 分组管理
| *
| * @author :JNPF开发平台组
| * @version: V3.1.0
| * @copyright 引迈信息技术有限公司
| * @date :2022/3/10 17:53
| */
| @Data
| @TableName("base_group")
| public class GroupEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
|
| /**
| * 名称
| */
| @TableField("f_full_name")
| private String fullName;
|
| /**
| * 编码
| */
| @TableField("f_en_code")
| private String enCode;
| }
|
|