潘志宝
2024-08-15 81c220fd9e0ea6c8ee84c9b766885b0322b4038c
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.system.controller.admin.dict.vo.data;
H 2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 @Schema(description = "管理后台 - 数据字典精简 Response VO")
7 @Data
8 public class DictDataSimpleRespVO {
9
10     @Schema(description = "字典类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "gender")
11     private String dictType;
12
13     @Schema(description = "字典键值", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
14     private String value;
15
16     @Schema(description = "字典标签", requiredMode = Schema.RequiredMode.REQUIRED, example = "男")
17     private String label;
18
19     @Schema(description = "颜色类型,default、primary、success、info、warning、danger", example = "default")
20     private String colorType;
21
22     @Schema(description = "css 样式", example = "btn-visible")
23     private String cssClass;
24
25 }