import { IPSDataEntity } from '../ipsdata-entity'; import { IPSDEDataQueryReturn } from './ipsdedata-query-return'; import { IPSDEMethodDTO } from '../service/ipsdemethod-dto'; import { PSModelObjectImpl } from '../../psmodel-object-impl'; export class PSDEDataQueryReturnImpl extends PSModelObjectImpl implements IPSDEDataQueryReturn { get codeName(): string { return this.M.codeName; } 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; } protected psdemethoddto: IPSDEMethodDTO | null = null; getPSDEMethodDTO(): IPSDEMethodDTO | null { if (this.psdemethoddto != null) return this.psdemethoddto; const value = this.M.getPSDEMethodDTO; if (value == null) { return null; } const ipsdataentity = this.getParentPSModelObject('dataentity.IPSDataEntity') as IPSDataEntity; if (ipsdataentity != null) { this.psdemethoddto = ipsdataentity.findPSDEMethodDTO(value); } return this.psdemethoddto; } get psDEMethodDTO(): IPSDEMethodDTO | null { return this.getPSDEMethodDTO(); } getPSDEMethodDTOMust(): IPSDEMethodDTO { const value = this.getPSDEMethodDTO(); if (value == null) { throw new Error('未指定实体方法DTO对象'); } return value; } get rTMOSFilePath(): string { return this.M.rTMOSFilePath; } get type(): 'VOID' | 'SIMPLE' | 'SIMPLES' | 'DTO' | 'DTOS' | 'PAGE' | 'UNKNOWN' | 'USER' | 'USER2' { return this.M.type; } 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 cls(): string { return 'PSDEDataQueryReturnImpl'; } instanceof(cls: string): boolean { if (cls == 'dataentity.ds.IPSDEDataQueryReturn' || cls == 'dataentity.service.IPSDEMethodReturn') return true; return super.instanceof(cls); } }