Jay
2024-10-16 48c2e5ffb3f9ad3509006e50f3142ea4d0e7f619
提交 | 用户 | 时间
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 }