潘志宝
2024-12-15 bbe7acfbe5a4c08d6edc91eaf81dcecf9d630e18
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;
 
import java.util.Date;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年09月10日
 */
@Schema(description = "数据平台 - 指标数据集 Response VO")
@Data
@ExcelIgnoreUnannotated
public class IndDataSetRespVO {
 
    @Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    @ExcelProperty("ID")
    private String id;
 
    @Schema(description = "名称", example = "")
    private String name;
 
    @Schema(description = "数据源", example = "")
    private String dataSource;
 
    @Schema(description = "查询语句", example = "")
    private String querySql;
 
    @Schema(description = "备注", example = "")
    private String remark;
 
    @Schema(description = "排序", example = "")
    private Integer sort;
 
    @Schema(description = "创建者", example = "")
    private String creator;
 
    @Schema(description = "创建时间", example = "")
    private Date createTime;
 
    @Schema(description = "更新者", example = "")
    private String updater;
 
    @Schema(description = "更新时间", example = "")
    private Date updateTime;
}