import { IPSAppCodeList } from '../../app/codelist/ipsapp-code-list'; import { IPSEditor } from '../ipseditor'; /** * * 子接口类型识别属性[] * @export * @interface IPSCodeListEditor */ export interface IPSCodeListEditor extends IPSEditor { /** * 应用代码表对象 * * @type {IPSAppCodeList} */ getPSAppCodeList(): IPSAppCodeList | null; /** * 应用代码表对象 * * @type {IPSAppCodeList} */ get psAppCodeList(): IPSAppCodeList | null; /** * 应用代码表对象(必须存在) * * @type {IPSAppCodeList} */ getPSAppCodeListMust(): IPSAppCodeList; /** * 值为数组形式 * @type {boolean} * @default false */ array: boolean; }