/** * @desc 项目经理工作台 */ import { ApiClientFactory } from '../core/api.client.factory'; import { INoticeListParams, INoticeListData, INoticeDetail, ILogList } from '../model/managerWorkbench.model'; export declare class ManagerWorkbenchService { private factory; constructor(factory: ApiClientFactory); getNoticeList(projectId: string, params: INoticeListParams): Promise; getNoticeDetail(projectId: string, noticeId: string): Promise; getLogList(projectId: string, noticeId: string, params: any): Promise; getUnReadNum(projectId: string): Promise; }