import { IPSModelObject } from './ipsmodel-object'; /** * * @export * @interface IPSObject */ export interface IPSObject extends IPSModelObject { /** * 备注 * @type {string} */ memo: string; /** * 名称 * @type {string} */ name: string; }