import { IPSSubSysServiceAPI } from './ipssub-sys-service-api'; import { IPSSubSysServiceAPIDTO } from './ipssub-sys-service-apidto'; import { IPSSubSysServiceAPIMethodReturn } from './ipssub-sys-service-apimethod-return'; import { PSModelObjectImpl } from '../psmodel-object-impl'; export class PSSubSysServiceAPIMethodReturnImpl extends PSModelObjectImpl implements IPSSubSysServiceAPIMethodReturn { 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 pssubsysserviceapidto: IPSSubSysServiceAPIDTO | null = null; getPSSubSysServiceAPIDTO(): IPSSubSysServiceAPIDTO | null { if (this.pssubsysserviceapidto != null) return this.pssubsysserviceapidto; const value = this.M.getPSSubSysServiceAPIDTO; if (value == null) { return null; } const ipssubsysserviceapi = this.getParentPSModelObject('service.IPSSubSysServiceAPI') as IPSSubSysServiceAPI; if (ipssubsysserviceapi != null) { this.pssubsysserviceapidto = ipssubsysserviceapi.findPSSubSysServiceAPIDTO(value); } return this.pssubsysserviceapidto; } get psSubSysServiceAPIDTO(): IPSSubSysServiceAPIDTO | null { return this.getPSSubSysServiceAPIDTO(); } getPSSubSysServiceAPIDTOMust(): IPSSubSysServiceAPIDTO { const value = this.getPSSubSysServiceAPIDTO(); if (value == null) { throw new Error('未指定实体服务接口DTO对象'); } return value; } get rTMOSFilePath(): string { return this.M.rTMOSFilePath; } get stdDataType(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 { return this.M.stdDataType != null ? this.M.stdDataType : 0; } 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 'PSSubSysServiceAPIMethodReturnImpl'; } instanceof(cls: string): boolean { if (cls == 'dataentity.service.IPSDEMethodReturn' || cls == 'service.IPSSubSysServiceAPIMethodReturn') return true; return super.instanceof(cls); } }