liurunyu
2024-12-16 a8157b2445e6d17fa23fcf19143f5e1fcb179ee2
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
32
33
34
35
36
package com.dy.pipIrrGlobal.voBa;
 
import com.alibaba.fastjson2.annotation.JSONField;
import com.alibaba.fastjson2.writer.ObjectWriterImplToString;
import com.dy.common.po.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * @author ZhuBaoMin
 * @date 2024-06-26 20:58
 * @LastEditTime 2024-06-26 20:58
 * @Description
 */
 
@Data
@Schema(title = "字典项视图对象")
public class VoDictItem implements BaseEntity {
    private static final long serialVersionUID = 202406262059001L;
 
    /**
     * 字典项ID
     */
    @JSONField(serializeUsing = ObjectWriterImplToString.class)
    private Long dictItemId;
 
    /**
     * 标签
     */
    private String name;
 
    /**
     * 数据值
     */
    private String value;
}