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;
|
}
|