import { ApiClientFactory } from '../core/api.client.factory'; import { IProductionImageProgress, IProductionImageProgressDetail, IEmploymentAnalysis, IEmploymentAnalysisDetail, IProgressList, IProgressListDetail, IProgressMasterWarn, IProgressMasterWarnParams } from '../model/progress.model'; export declare class ProgressService { private factory; constructor(factory: ApiClientFactory); loadWeeklyPlans(projectId: string, type: string): Promise; loadZtProjectInfo(projectId: string): Promise; loadProjectOutputValueOfYear(projectId: string): Promise; loadProjectOutputValueOfSeason(projectId: string): Promise; loadProjectOutputValueOfMonth(projectId: string): Promise; loadProjectOutputValueOfList(projectId: string): Promise; loadProjectFieldEvent(projectId: string): Promise; loadProjectImageProgressPhoto(projectId: string, type: number): Promise; loadProductionImageProgress(projectId: string): Promise; loadProductionImageProgressDetail(projectId: string, startDate?: string, endDate?: string): Promise; loadProjectStationOutputValueRanking(projectId: string): Promise; loadProjectPhysicalQuantityProgressOfYearList(projectId: string): Promise; loadProjectPhysicalQuantityProgressOfSeasonList(projectId: string): Promise; loadProjectPhysicalQuantityProgressOfMonthList(projectId: string): Promise; loadProjectPhysicalQuantityProgressOfWeekList(projectId: string): Promise; loadProjectPhysicalQuantityProgressOfYearData(projectId: string, year: string): Promise; loadProjectPhysicalQuantityProgressOfSeasonData(projectId: string, year: string, season: string): Promise; loadProjectPhysicalQuantityProgressOfMonthData(projectId: string, year: string, month: string): Promise; loadProjectPhysicalQuantityProgressOfWeekData(projectId: string, year: string, month: string, week: string): Promise; loadEmploymentAnalysis(projectId: string): Promise; loadEmploymentAnalysisDetail(projectId: string, subConstructorId: string): Promise; loadProgressList(projectId: string): Promise; loadProgressListDetail(projectId: string, postData: any): Promise; loadProgressMasterDetail(projectId: string): Promise; loadProgressMasterWarn(projectId: string, params: IProgressMasterWarnParams): Promise; }