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