import { IPSSysSFPlugin } from '../res/ipssys-sfplugin'; import { IPSSysSearchDoc } from './ipssys-search-doc'; import { IPSSysSearchScheme } from './ipssys-search-scheme'; import { IPSSystemModule } from '../system/ipssystem-module'; import { PSModelObjectImpl } from '../psmodel-object-impl'; export class PSSysSearchSchemeImpl extends PSModelObjectImpl implements IPSSysSearchScheme { protected allpssyssearchdocs: IPSSysSearchDoc[] | null = null; getAllPSSysSearchDocs(): IPSSysSearchDoc[] | null { if (this.allpssyssearchdocs == null) { this.allpssyssearchdocs = this.fillChildListModel(this.M.getAllPSSysSearchDocs, 'search.IPSSysSearchDoc') as IPSSysSearchDoc[]; } return this.allpssyssearchdocs; } get allPSSysSearchDocs(): IPSSysSearchDoc[] | null { return this.getAllPSSysSearchDocs(); } findPSSysSearchDoc(objKey: any): IPSSysSearchDoc | null { return this.getPSModel5('search.IPSSysSearchDoc', this.getAllPSSysSearchDocs(), objKey) as IPSSysSearchDoc; } get codeName(): string { return this.M.codeName; } get defaultDocReplicas(): number { return this.M.defaultDocReplicas; } get defaultDocShards(): number { return this.M.defaultDocShards; } 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 pssyssfplugin: IPSSysSFPlugin | null = null; getPSSysSFPlugin(): IPSSysSFPlugin | null { if (this.pssyssfplugin != null) return this.pssyssfplugin; const value = this.M.getPSSysSFPlugin; if (value == null) { return null; } this.pssyssfplugin = this.getPSModel4('res.IPSSysSFPlugin', value, 'getPSSysSFPlugin') as IPSSysSFPlugin; return this.pssyssfplugin; } get psSysSFPlugin(): IPSSysSFPlugin | null { return this.getPSSysSFPlugin(); } getPSSysSFPluginMust(): IPSSysSFPlugin { const value = this.getPSSysSFPlugin(); if (value == null) { throw new Error('未指定后台扩展插件'); } return value; } protected pssystemmodule: IPSSystemModule | null = null; getPSSystemModule(): IPSSystemModule | null { if (this.pssystemmodule != null) return this.pssystemmodule; const value = this.M.getPSSystemModule; if (value == null) { return null; } this.pssystemmodule = this.getPSModel4('system.IPSSystemModule', value, 'getPSSystemModule') as IPSSystemModule; return this.pssystemmodule; } get psSystemModule(): IPSSystemModule | null { return this.getPSSystemModule(); } getPSSystemModuleMust(): IPSSystemModule { const value = this.getPSSystemModule(); if (value == null) { throw new Error('未指定系统模块'); } return value; } get rTMOSFilePath(): string { return this.M.rTMOSFilePath; } get schemeTag(): string { return this.M.schemeTag; } get schemeTag2(): string { return this.M.schemeTag2; } get searchEngineType(): 'ELASTICSEARCH' | 'SOLR' | 'USER' | 'USER2' { return this.M.searchEngineType; } 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 'PSSysSearchSchemeImpl'; } instanceof(cls: string): boolean { if (cls == 'IPSModelObject' || cls == 'IPSObject' || cls == 'search.IPSSearchScheme' || cls == 'search.IPSSysSearchScheme') return true; return super.instanceof(cls); } }