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