import { IPSModelObject } from '../ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSDynaModelAttr */ export interface IPSDynaModelAttr extends IPSModelObject { /** * 属性标记 * @type {string} */ attrTag: string; /** * 属性标记2 * @type {string} */ attrTag2: string; /** * @type {string} */ value: string; /** * @type {string} */ valueType: string; }