houzhongjian
2024-11-19 d7ac861cab28bc39f87c1af464ec4d319a0cbb37
提交 | 用户 | 时间
8c1646 1 package com.iailab.module.data.plan.data.vo;
2
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
8 import java.util.Date;
9
10 /**
11  * @author PanZhibao
12  * @Description
13  * @createTime 2024年09月10日
14  */
15 @Schema(description = "数据平台 - 计划数据集 Response VO")
16 @Data
17 @ExcelIgnoreUnannotated
18 public class PlanDataSetRespVO {
19
20     @Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
21     @ExcelProperty("ID")
22     private String id;
23
24     @Schema(description = "名称", example = "")
25     private String name;
26
27     @Schema(description = "数据源", example = "")
28     private String dataSource;
29
30     @Schema(description = "查询语句", example = "")
31     private String querySql;
32
33     @Schema(description = "备注", example = "")
34     private String remark;
35
36     @Schema(description = "排序", example = "")
37     private Integer sort;
38
39     @Schema(description = "创建者", example = "")
40     private String creator;
41
42     @Schema(description = "创建时间", example = "")
43     private Date createTime;
44
45     @Schema(description = "更新者", example = "")
46     private String updater;
47
48     @Schema(description = "更新时间", example = "")
49     private Date updateTime;
50 }