import { IPSAppDEDataSet } from '../../app/dataentity/ipsapp-dedata-set'; import { IPSAppDataEntity } from '../../app/dataentity/ipsapp-data-entity'; import { IPSDataEntity } from '../ipsdata-entity'; import { IPSDEDataSet } from '../ds/ipsdedata-set'; import { IPSDELogicNode } from './ipsdelogic-node'; import { IPSDELogicParam } from './ipsdelogic-param'; /** * * 继承父接口类型值[DEDATASET] * @export * @interface IPSDEDEDataSetLogic */ export interface IPSDEDEDataSetLogic extends IPSDELogicNode { /** * 应用实体数据集对象 * * @type {IPSAppDEDataSet} */ getDstPSAppDEDataSet(): IPSAppDEDataSet | null; /** * 应用实体数据集对象 * * @type {IPSAppDEDataSet} */ get dstPSAppDEDataSet(): IPSAppDEDataSet | null; /** * 应用实体数据集对象(必须存在) * * @type {IPSAppDEDataSet} */ getDstPSAppDEDataSetMust(): IPSAppDEDataSet; /** * 应用实体对象 * * @type {IPSAppDataEntity} */ getDstPSAppDataEntity(): IPSAppDataEntity | null; /** * 应用实体对象 * * @type {IPSAppDataEntity} */ get dstPSAppDataEntity(): IPSAppDataEntity | null; /** * 应用实体对象(必须存在) * * @type {IPSAppDataEntity} */ getDstPSAppDataEntityMust(): IPSAppDataEntity; /** * 目标实体数据集对象 * * @type {IPSDEDataSet} */ getDstPSDEDataSet(): IPSDEDataSet | null; /** * 目标实体数据集对象 * * @type {IPSDEDataSet} */ get dstPSDEDataSet(): IPSDEDataSet | null; /** * 目标实体数据集对象(必须存在) * * @type {IPSDEDataSet} */ getDstPSDEDataSetMust(): IPSDEDataSet; /** * 目标逻辑参数对象 * * @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; }