xyc
2025-02-21 664db98c9e8595ce4dd636a27f480e3a08b81ff5
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
/**
 * Copyright (c) 2019 人人开源 All rights reserved.
 * <p>
 * https://www.renren.io
 * <p>
 * 版权所有,侵权必究!
 */
 
package com.zt.core.sys.dto;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 *  字典数据
 *
 * @author hehz
 */
@Data
public class DictItemDto implements Serializable {
    private String dictLabel;
    private String dictValue;
    private String remark;
    public DictItemDto() {
    }
 
    public DictItemDto(String dictLabel, String dictValue, String remark) {
        this.dictLabel = dictLabel;
        this.dictValue = dictValue;
        this.remark = remark;
    }
}