import { IPSModelObject } from '../../ipsmodel-object'; import { IPSUIEngineParam } from '../../view/ipsuiengine-param'; /** * * 子接口类型识别属性[] * @export * @interface IPSAppViewEngineParam */ export interface IPSAppViewEngineParam extends IPSUIEngineParam, IPSModelObject { /** * 视图逻辑名称 * @type {string} */ appViewLogicName: string; /** * 部件名称 * @type {string} */ ctrlName: string; /** * 参数类型 * @type {string} */ paramType: string; /** * 直接值 * @type {IModel} */ value: IModel; }