12345678910111213141516171819202122 |
- package api.common.pojo.po.system;
- import api.common.pojo.common.CommonPO;
- import lombok.Data;
- @Data
- public class DictPO extends CommonPO {
- //主键
- private String id;
- //父id
- private String pid;
- //字典类型
- private String dictType;
- //名称
- private String dictName;
- //编码
- private String dictCode;
- //序号
- private int dictOrder;
- }
|