| | |
| | | package com.iailab.module.data.ind.data.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | | * @Description |
| | | * @createTime 2024年09月10日 |
| | | */ |
| | | @Schema(description = "数据平台 - 指标数据集字段 Response VO") |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | public class IndDataSetFieldRespVO { |
| | | |
| | | @Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
| | | @ExcelProperty("ID") |
| | | private String id; |
| | | |
| | | @Schema(description = "数据集ID", example = "") |
| | | private String dataSetId; |
| | | |
| | | @Schema(description = "英文名", example = "") |
| | | private String fieldCode; |
| | | |
| | | @Schema(description = "中文名", example = "") |
| | | private String fieldName; |
| | | |
| | | @Schema(description = "数据类型", example = "") |
| | | private String fieldType; |
| | | |
| | | @Schema(description = "排序", example = "") |
| | | private Integer sort; |
| | | } |