dongyukun
2025-01-24 5c2fc8b317e17d0b194f27937bd9d2af8961502f
提交 | 用户 | 时间
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
664918 14     private String itemNo;
15
cf757d 16     private String dataSource;
17
18     private String selectSql;
19
20     private String viewSql;
21
22     private String whereSql;
23
24     private String groupSql;
25
26     private String orderBySql;
48c2e5 27
J 28     private IndItemAtomVO indItemAtom;
cf757d 29 }