import { IPSDataEntity } from '../ipsdata-entity'; import { IPSDELogicNode } from './ipsdelogic-node'; import { IPSDELogicParam } from './ipsdelogic-param'; import { IPSDENotify } from '../notify/ipsdenotify'; /** * * 继承父接口类型值[DENOTIFY] * @export * @interface IPSDEDENotifyLogic */ export interface IPSDEDENotifyLogic extends IPSDELogicNode { /** * 目标逻辑参数对象 * * @type {IPSDELogicParam} */ getDstPSDELogicParam(): IPSDELogicParam | null; /** * 目标逻辑参数对象 * * @type {IPSDELogicParam} */ get dstPSDELogicParam(): IPSDELogicParam | null; /** * 目标逻辑参数对象(必须存在) * * @type {IPSDELogicParam} */ getDstPSDELogicParamMust(): IPSDELogicParam; /** * 目标实体通知对象 * * @type {IPSDENotify} */ getDstPSDENotify(): IPSDENotify | null; /** * 目标实体通知对象 * * @type {IPSDENotify} */ get dstPSDENotify(): IPSDENotify | null; /** * 目标实体通知对象(必须存在) * * @type {IPSDENotify} */ getDstPSDENotifyMust(): IPSDENotify; /** * 目标实体对象 * * @type {IPSDataEntity} */ getDstPSDataEntity(): IPSDataEntity | null; /** * 目标实体对象 * * @type {IPSDataEntity} */ get dstPSDataEntity(): IPSDataEntity | null; /** * 目标实体对象(必须存在) * * @type {IPSDataEntity} */ getDstPSDataEntityMust(): IPSDataEntity; }