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