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