| 123456789101112131415161718192021222324252627 |
- package com.punchsettle.server.pojo.dict;
- import com.fasterxml.jackson.annotation.JsonProperty;
- import lombok.Data;
- /**
- * @author myou
- * @version 1.0.0
- * @date 2024/12/21 21:01
- * @description 字典项查询结果
- */
- @Data
- public class DictItemVO {
- /**
- * 字典项编码
- */
- @JsonProperty(value = "value")
- private Object itemCode;
- /**
- * 字典项名称
- */
- @JsonProperty(value = "text")
- private String itemName;
- }
|