import { IPSCodeList } from '../../codelist/ipscode-list'; import { IPSDataEntity } from '../ipsdata-entity'; import { IPSDEFGroupDetail } from './ipsdefgroup-detail'; import { IPSDEField } from './ipsdefield'; import { IPSLanguageRes } from '../../res/ipslanguage-res'; import { PSModelObjectImpl } from '../../psmodel-object-impl'; export class PSDEFGroupDetailImpl extends PSModelObjectImpl implements IPSDEFGroupDetail { get codeName(): string { return this.M.codeName; } get codeName2(): string { return this.M.codeName2; } get detailParam(): string { return this.M.detailParam; } get detailParam2(): string { return this.M.detailParam2; } get dynaModelFilePath(): string { return this.M.dynaModelFilePath; } protected lnpslanguageres: IPSLanguageRes | null = null; getLNPSLanguageRes(): IPSLanguageRes | null { if (this.lnpslanguageres != null) return this.lnpslanguageres; const value = this.M.getLNPSLanguageRes; if (value == null) { return null; } this.lnpslanguageres = this.getPSModel4('res.IPSLanguageRes', value, 'getLNPSLanguageRes') as IPSLanguageRes; return this.lnpslanguageres; } get lNPSLanguageRes(): IPSLanguageRes | null { return this.getLNPSLanguageRes(); } getLNPSLanguageResMust(): IPSLanguageRes { const value = this.getLNPSLanguageRes(); if (value == null) { throw new Error('未指定逻辑名称语言资源'); } return value; } get logicName(): string { return this.M.logicName; } get mOSFilePath(): string { return this.M.mOSFilePath; } get maxValueString(): string { return this.M.maxValueString; } get memo(): string { return this.M.memo; } get minStringLength(): number { return this.M.minStringLength != null ? this.M.minStringLength : 0; } get minValueString(): string { return this.M.minValueString; } get name(): string { return this.M.name; } get orderValue(): number { return this.M.orderValue != null ? this.M.orderValue : 99999; } 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 precision(): number { return this.M.precision != null ? this.M.precision : 0; } get rTMOSFilePath(): string { return this.M.rTMOSFilePath; } get stringLength(): number { return this.M.stringLength != null ? this.M.stringLength : 0; } 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 allowEmpty(): boolean { return this.M.allowEmpty != null ? this.M.allowEmpty : true; } get enableUserInsert(): boolean { return this.M.enableUserInsert; } get enableUserUpdate(): boolean { return this.M.enableUserUpdate; } get cls(): string { return 'PSDEFGroupDetailImpl'; } instanceof(cls: string): boolean { if (cls == 'IPSModelSortable' || cls == 'dataentity.defield.IPSDEFGroupDetail') return true; return super.instanceof(cls); } }