import { IPSAppDEDataSet } from '../../app/dataentity/ipsapp-dedata-set'; import { IPSAppDataEntity } from '../../app/dataentity/ipsapp-data-entity'; import { IPSDEUILogicNode } from './ipsdeuilogic-node'; import { IPSDEUILogicParam } from './ipsdeuilogic-param'; /** * * 继承父接口类型值[DEDATASET] * @export * @interface IPSDEUIDEDataSetLogic */ export interface IPSDEUIDEDataSetLogic extends IPSDEUILogicNode { /** * 应用实体数据集对象 * * @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 {IPSDEUILogicParam} */ getDstPSDEUILogicParam(): IPSDEUILogicParam | null; /** * 目标逻辑参数对象 * * @type {IPSDEUILogicParam} */ get dstPSDEUILogicParam(): IPSDEUILogicParam | null; /** * 目标逻辑参数对象(必须存在) * * @type {IPSDEUILogicParam} */ getDstPSDEUILogicParamMust(): IPSDEUILogicParam; /** * 返回值绑定逻辑参数对象 * * @type {IPSDEUILogicParam} */ getRetPSDEUILogicParam(): IPSDEUILogicParam | null; /** * 返回值绑定逻辑参数对象 * * @type {IPSDEUILogicParam} */ get retPSDEUILogicParam(): IPSDEUILogicParam | null; /** * 返回值绑定逻辑参数对象(必须存在) * * @type {IPSDEUILogicParam} */ getRetPSDEUILogicParamMust(): IPSDEUILogicParam; }