import { IPSDELogicNode } from './ipsdelogic-node'; import { IPSDELogicParam } from './ipsdelogic-param'; /** * * 继承父接口类型值[BINDPARAM] * @export * @interface IPSDEBindParamLogic */ export interface IPSDEBindParamLogic extends IPSDELogicNode { /** * 目标逻辑参数对象 * * @type {IPSDELogicParam} */ getDstPSDELogicParam(): IPSDELogicParam | null; /** * 目标逻辑参数对象 * * @type {IPSDELogicParam} */ get dstPSDELogicParam(): IPSDELogicParam | null; /** * 目标逻辑参数对象(必须存在) * * @type {IPSDELogicParam} */ getDstPSDELogicParamMust(): IPSDELogicParam; /** * 源属性名称 * @type {string} */ srcFieldName: string; /** * 源逻辑参数对象 * * @type {IPSDELogicParam} */ getSrcPSDELogicParam(): IPSDELogicParam | null; /** * 源逻辑参数对象 * * @type {IPSDELogicParam} */ get srcPSDELogicParam(): IPSDELogicParam | null; /** * 源逻辑参数对象(必须存在) * * @type {IPSDELogicParam} */ getSrcPSDELogicParamMust(): IPSDELogicParam; } //# sourceMappingURL=ipsdebind-param-logic.d.ts.map