import { IPSModelObject } from './ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSModelData */ export interface IPSModelData extends IPSModelObject { /** * 模型内容 * @type {string} */ content: string; /** * 模型逻辑名称 * @type {string} */ logicName: string; /** * 模型标记 * @type {string} */ modelTag: string; /** * 模型标记2 * @type {string} */ modelTag2: string; /** * 实际模型子类型 * @type {string} */ realModelSubType: string; /** * 实际模型类型 * @type {string} */ realModelType: string; }