1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.iailab.module.data.ind.value.dto;
|
| import lombok.Data;
|
| /**
| * @author PanZhibao
| * @Description
| * @createTime 2024年10月04日
| */
| @Data
| public class QuerySourceValueDTO {
|
| private String dataSource;
|
| private String selectSql;
|
| private String viewSql;
|
| private String whereSql;
|
| private String groupSql;
|
| private String orderBySql;
| }
|
|