import { IPSDataEntity } from '../ipsdata-entity'; import { IPSDEDataQuery } from '../ds/ipsdedata-query'; import { IPSDELogicNode } from './ipsdelogic-node'; import { IPSDELogicParam } from './ipsdelogic-param'; /** * * 继承父接口类型值[DEDATAQUERY] * @export * @interface IPSDEDEDataQueryLogic */ export interface IPSDEDEDataQueryLogic extends IPSDELogicNode { /** * 目标实体数据查询 * * @type {IPSDEDataQuery} */ getDstPSDEDataQuery(): IPSDEDataQuery | null; /** * 目标实体数据查询 * * @type {IPSDEDataQuery} */ get dstPSDEDataQuery(): IPSDEDataQuery | null; /** * 目标实体数据查询(必须存在) * * @type {IPSDEDataQuery} */ getDstPSDEDataQueryMust(): IPSDEDataQuery; /** * 目标逻辑参数对象 * * @type {IPSDELogicParam} */ getDstPSDELogicParam(): IPSDELogicParam | null; /** * 目标逻辑参数对象 * * @type {IPSDELogicParam} */ get dstPSDELogicParam(): IPSDELogicParam | null; /** * 目标逻辑参数对象(必须存在) * * @type {IPSDELogicParam} */ getDstPSDELogicParamMust(): IPSDELogicParam; /** * 目标实体对象 * * @type {IPSDataEntity} */ getDstPSDataEntity(): IPSDataEntity | null; /** * 目标实体对象 * * @type {IPSDataEntity} */ get dstPSDataEntity(): IPSDataEntity | null; /** * 目标实体对象(必须存在) * * @type {IPSDataEntity} */ getDstPSDataEntityMust(): IPSDataEntity; /** * 返回值绑定逻辑参数对象 * * @type {IPSDELogicParam} */ getRetPSDELogicParam(): IPSDELogicParam | null; /** * 返回值绑定逻辑参数对象 * * @type {IPSDELogicParam} */ get retPSDELogicParam(): IPSDELogicParam | null; /** * 返回值绑定逻辑参数对象(必须存在) * * @type {IPSDELogicParam} */ getRetPSDELogicParamMust(): IPSDELogicParam; }