潘志宝
2024-10-09 c0b8cf32504dd1a42780bb1ee06ae8a7b0d7b120
提交 | 用户 | 时间
cf757d 1 package com.iailab.module.data.ind.data.dto;
2
3 import lombok.Data;
4
5 import java.io.Serializable;
6 import java.util.List;
7
8 /**
9  * @author PanZhibao
10  * @Description
11  * @createTime 2024年10月04日
12  */
13 @Data
14 public class IndDataSetDTO implements Serializable {
15     private static final long serialVersionUID = 1L;
16
17     private String id;
18
19     /**
20      * 名称
21      */
22     private String name;
23
24     /**
25      * 数据源
26      */
27     private String dataSource;
28
29     /**
30      * 查询语句
31      */
32     private String querySql;
33
34
35     /**
36      * 字段
37      */
38     private List<IndDataSetFieldDTO> fieldList;
39 }