潘志宝
2024-12-15 bbe7acfbe5a4c08d6edc91eaf81dcecf9d630e18
提交 | 用户 | 时间
a63a4f 1 package com.iailab.module.data.ind.data.vo;
2
e41062 3 import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
4 import com.alibaba.excel.annotation.ExcelProperty;
5 import io.swagger.v3.oas.annotations.media.Schema;
6 import lombok.Data;
7
a63a4f 8 /**
9  * @author PanZhibao
10  * @Description
11  * @createTime 2024年09月10日
12  */
e41062 13 @Schema(description = "数据平台 - 指标数据集字段 Response VO")
14 @Data
15 @ExcelIgnoreUnannotated
a63a4f 16 public class IndDataSetFieldRespVO {
e41062 17
18     @Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
19     @ExcelProperty("ID")
20     private String id;
21
22     @Schema(description = "数据集ID", example = "")
23     private String dataSetId;
24
25     @Schema(description = "英文名", example = "")
26     private String fieldCode;
27
28     @Schema(description = "中文名", example = "")
29     private String fieldName;
30
31     @Schema(description = "数据类型", example = "")
32     private String fieldType;
33
34     @Schema(description = "排序", example = "")
35     private Integer sort;
a63a4f 36 }