123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.hfln.device.infrastructure.po;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- /**
- * 字典项表
- */
- @Data
- @EqualsAndHashCode(callSuper = true)
- @TableName("tbl_dic_item")
- public class TblDicItem extends BasePO {
- /**
- * 主键ID
- */
- @TableId(type = IdType.ASSIGN_ID)
- private Long itemId;
- /**
- * 字典编码
- */
- private String dicCode;
- /**
- * 字典项名称
- */
- private String itemName;
- /**
- * 字典项值
- */
- private String itemValue;
- /**
- * 排序号
- */
- private Integer sort;
- }
|