Jay
2024-10-15 5bc3b44956ebb5e0c18e8f32eb7bfbc1a0d070ad
提交 | 用户 | 时间
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 }