import { IPSDataEntity } from '../ipsdata-entity'; import { IPSDEActionReturn } from './ipsdeaction-return'; import { IPSDEDataQuery } from '../ds/ipsdedata-query'; import { IPSDEMethodDTO } from '../service/ipsdemethod-dto'; import { PSModelObjectImpl } from '../../psmodel-object-impl'; export class PSDEActionReturnImpl extends PSModelObjectImpl implements IPSDEActionReturn { 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 psdedataquery: IPSDEDataQuery | null = null; getPSDEDataQuery(): IPSDEDataQuery | null { if (this.psdedataquery != null) return this.psdedataquery; const value = this.M.getPSDEDataQuery; if (value == null) { return null; } const ipsdataentity = this.getParentPSModelObject('dataentity.IPSDataEntity') as IPSDataEntity; if (ipsdataentity != null) { this.psdedataquery = ipsdataentity.findPSDEDataQuery(value); } return this.psdedataquery; } get psDEDataQuery(): IPSDEDataQuery | null { return this.getPSDEDataQuery(); } getPSDEDataQueryMust(): IPSDEDataQuery { const value = this.getPSDEDataQuery(); if (value == null) { throw new Error('未指定属性组关联查询'); } return value; } 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 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 'PSDEActionReturnImpl'; } instanceof(cls: string): boolean { if (cls == 'dataentity.action.IPSDEActionReturn' || cls == 'dataentity.service.IPSDEMethodReturn') return true; return super.instanceof(cls); } }