import { IPSApplicationObject } from './ipsapplication-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSAppModule */ export interface IPSAppModule extends IPSApplicationObject { /** * 代码标识 * @type {string} */ codeName: string; /** * 默认模块 * @type {boolean} * @default false */ defaultModule: boolean; }