潘志宝
2024-11-21 d338b50afd6504a9676f0a26b3ecbcc844483e7c
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
package com.iailab.module.system.controller.admin.dict.vo.data;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Schema(description = "管理后台 - 数据字典精简 Response VO")
@Data
public class DictDataSimpleRespVO {
 
    @Schema(description = "字典类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "gender")
    private String dictType;
 
    @Schema(description = "字典键值", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private String value;
 
    @Schema(description = "字典标签", requiredMode = Schema.RequiredMode.REQUIRED, example = "男")
    private String label;
 
    @Schema(description = "颜色类型,default、primary、success、info、warning、danger", example = "default")
    private String colorType;
 
    @Schema(description = "css 样式", example = "btn-visible")
    private String cssClass;
 
}