import { IPSSysBDTableDE } from './ipssys-bdtable-de'; import { PSModelObjectImpl } from '../psmodel-object-impl'; export class PSSysBDTableDEImpl extends PSModelObjectImpl implements IPSSysBDTableDE { get bDTableDEType(): 1 | 2 | 3 | 0 { return this.M.bDTableDEType; } 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; } get rTMOSFilePath(): string { return this.M.rTMOSFilePath; } get rowKeyFormat(): string { return this.M.rowKeyFormat; } get rowKeyParams(): string { return this.M.rowKeyParams; } 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 'PSSysBDTableDEImpl'; } instanceof(cls: string): boolean { if (cls == 'ba.IPSBDTableDE' || cls == 'ba.IPSSysBDTableDE') return true; return super.instanceof(cls); } }