import { IPSDataEntity } from '../ipsdata-entity'; import { IPSDELogicNode } from './ipsdelogic-node'; import { IPSDELogicParam } from './ipsdelogic-param'; import { IPSDEReport } from '../report/ipsdereport'; /** * * 继承父接口类型值[DEREPORT] * @export * @interface IPSDEDEReportLogic */ export interface IPSDEDEReportLogic extends IPSDELogicNode { /** * 目标逻辑参数对象 * * @type {IPSDELogicParam} */ getDstPSDELogicParam(): IPSDELogicParam | null; /** * 目标逻辑参数对象 * * @type {IPSDELogicParam} */ get dstPSDELogicParam(): IPSDELogicParam | null; /** * 目标逻辑参数对象(必须存在) * * @type {IPSDELogicParam} */ getDstPSDELogicParamMust(): IPSDELogicParam; /** * 目标实体报表对象 * * @type {IPSDEReport} */ getDstPSDEReport(): IPSDEReport | null; /** * 目标实体报表对象 * * @type {IPSDEReport} */ get dstPSDEReport(): IPSDEReport | null; /** * 目标实体报表对象(必须存在) * * @type {IPSDEReport} */ getDstPSDEReportMust(): IPSDEReport; /** * 目标实体对象 * * @type {IPSDataEntity} */ getDstPSDataEntity(): IPSDataEntity | null; /** * 目标实体对象 * * @type {IPSDataEntity} */ get dstPSDataEntity(): IPSDataEntity | null; /** * 目标实体对象(必须存在) * * @type {IPSDataEntity} */ getDstPSDataEntityMust(): IPSDataEntity; /** * 输出流逻辑参数对象 * * @type {IPSDELogicParam} */ getOSPSDELogicParam(): IPSDELogicParam | null; /** * 输出流逻辑参数对象 * * @type {IPSDELogicParam} */ get oSPSDELogicParam(): IPSDELogicParam | null; /** * 输出流逻辑参数对象(必须存在) * * @type {IPSDELogicParam} */ getOSPSDELogicParamMust(): IPSDELogicParam; }