import { IPSModelObject } from '../../ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSDELogicParamBase */ export interface IPSDELogicParamBase extends IPSModelObject { /** * 代码标识 * @type {string} */ codeName: string; /** * 默认参数 * @type {boolean} * @default false */ default: boolean; }