提交 | 用户 | 时间
|
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 |
|
|
8 |
import java.util.Date; |
|
9 |
|
a63a4f
|
10 |
/** |
潘 |
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年09月10日 |
|
14 |
*/ |
e41062
|
15 |
@Schema(description = "数据平台 - 指标数据集 Response VO") |
潘 |
16 |
@Data |
|
17 |
@ExcelIgnoreUnannotated |
a63a4f
|
18 |
public class IndDataSetRespVO { |
e41062
|
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; |
a63a4f
|
50 |
} |