import { IPSAppDEDataImportItem } from '../../app/dataentity/ipsapp-dedata-import-item'; import { IPSAppDEField } from '../../app/dataentity/ipsapp-defield'; import { IPSCodeList } from '../../codelist/ipscode-list'; import { IPSDataEntity } from '../ipsdata-entity'; import { IPSDEDataImportItem } from './ipsdedata-import-item'; import { IPSDEField } from '../defield/ipsdefield'; import { IPSLanguageRes } from '../../res/ipslanguage-res'; import { PSModelObjectImpl } from '../../psmodel-object-impl'; export class PSDEDataImportItemImpl extends PSModelObjectImpl implements IPSDEDataImportItem, IPSAppDEDataImportItem { protected cappslanguageres: IPSLanguageRes | null = null; getCapPSLanguageRes(): IPSLanguageRes | null { if (this.cappslanguageres != null) return this.cappslanguageres; const value = this.M.getCapPSLanguageRes; if (value == null) { return null; } this.cappslanguageres = this.getPSModel4('res.IPSLanguageRes', value, 'getCapPSLanguageRes') as IPSLanguageRes; return this.cappslanguageres; } get capPSLanguageRes(): IPSLanguageRes | null { return this.getCapPSLanguageRes(); } getCapPSLanguageResMust(): IPSLanguageRes { const value = this.getCapPSLanguageRes(); if (value == null) { throw new Error('未指定标题语言资源'); } return value; } get caption(): string { return this.M.caption; } get codeName(): string { return this.M.codeName; } get createDV(): string { return this.M.createDV; } get createDVT(): 'SESSION' | 'APPLICATION' | 'UNIQUEID' | 'CONTEXT' | 'PARAM' | 'OPERATOR' | 'OPERATORNAME' | 'CURTIME' | 'APPDATA' { return this.M.createDVT; } get dynaModelFilePath(): string { return this.M.dynaModelFilePath; } get mOSFilePath(): string { return this.M.mOSFilePath; } get memo(): string { return this.M.memo; } get name(): string { return this.M.name; } get orderValue(): number { return this.M.orderValue != null ? this.M.orderValue : 99999; } protected psappdefield: IPSAppDEField | null = null; getPSAppDEField(): IPSAppDEField | null { if (this.psappdefield != null) return this.psappdefield; const value = this.M.getPSAppDEField; if (value == null) { return null; } this.psappdefield = this.getPSModel4('app.dataentity.IPSAppDEField', value, 'getPSAppDEField') as IPSAppDEField; return this.psappdefield; } get psAppDEField(): IPSAppDEField | null { return this.getPSAppDEField(); } getPSAppDEFieldMust(): IPSAppDEField { const value = this.getPSAppDEField(); if (value == null) { throw new Error('未指定应用实体属性'); } return value; } protected pscodelist: IPSCodeList | null = null; getPSCodeList(): IPSCodeList | null { if (this.pscodelist != null) return this.pscodelist; const value = this.M.getPSCodeList; if (value == null) { return null; } this.pscodelist = this.getPSModel4('codelist.IPSCodeList', value, 'getPSCodeList') as IPSCodeList; return this.pscodelist; } get psCodeList(): IPSCodeList | null { return this.getPSCodeList(); } getPSCodeListMust(): IPSCodeList { const value = this.getPSCodeList(); if (value == null) { throw new Error('未指定代码表对象'); } return value; } protected psdefield: IPSDEField | null = null; getPSDEField(): IPSDEField | null { if (this.psdefield != null) return this.psdefield; const value = this.M.getPSDEField; if (value == null) { return null; } const ipsdataentity = this.getParentPSModelObject('dataentity.IPSDataEntity') as IPSDataEntity; if (ipsdataentity != null) { this.psdefield = ipsdataentity.findPSDEField(value); } return this.psdefield; } get psDEField(): IPSDEField | null { return this.getPSDEField(); } getPSDEFieldMust(): IPSDEField { const value = this.getPSDEField(); if (value == null) { throw new Error('未指定实体属性'); } return value; } get rTMOSFilePath(): string { return this.M.rTMOSFilePath; } get updateDV(): string { return this.M.updateDV; } get updateDVT(): 'SESSION' | 'APPLICATION' | 'UNIQUEID' | 'CONTEXT' | 'PARAM' | 'OPERATOR' | 'OPERATORNAME' | 'CURTIME' | 'APPDATA' { return this.M.updateDVT; } get userCat(): string { return this.M.userCat; } get userTag(): string { return this.M.userTag; } get userTag2(): string { return this.M.userTag2; } get userTag3(): string { return this.M.userTag3; } get userTag4(): string { return this.M.userTag4; } get hiddenDataItem(): boolean { return this.M.hiddenDataItem != null ? this.M.hiddenDataItem : false; } get uniqueItem(): boolean { return this.M.uniqueItem != null ? this.M.uniqueItem : false; } get cls(): string { return 'PSDEDataImportItemImpl'; } instanceof(cls: string): boolean { if (cls == 'IPSModelSortable' || cls == 'app.dataentity.IPSAppDEDataImportItem' || cls == 'dataentity.dataimport.IPSDEDataImportItem') return true; return super.instanceof(cls); } }