import { HttpService } from '@ecp-caf/caf-common'; import { Observable } from 'rxjs'; import { FrameworkService, AppService } from '@gsp-sys/rtf-common'; import { IRtShowEntity } from '../entity/IRtShowEntity'; import { ProcessFilterConditionArgs } from '../entity/ProcessFilterConditionArgs'; import { RtBillProcessListResult } from '../entity/RtBillProcessListResult'; export declare class ProcessListHelpService { private appService; private frameworkService; private httpService; private readonly baseUrl; constructor(appService: AppService, frameworkService: FrameworkService, httpService: HttpService); openBifManagerApp(entity: IRtShowEntity): void; getDatagridData(args: ProcessFilterConditionArgs): Observable; /** * 根据流程编号查询流程名称 * @param code * @returns */ getProcessNameByCode(code: string): Observable; }