mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
package com.panzhihua.common.model.vos;
 
import java.io.Serializable;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * @author manailin
 * @date 2021/6/11 16:27
 */
@ApiModel("字典项")
@Data
public class BcDictionaryItemVO implements Serializable {
 
    /**
     * 字典项名
     */
    private String dictItemName;
 
    /**
     * 字典项值
     */
    private String dictValue;
 
    /**
     * 助记码
     */
    private String mnemonicCode;
}