提交 | 用户 | 时间
|
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 |
} |