保存进度!

This commit is contained in:
2023-11-01 18:22:01 +08:00
parent 0650227861
commit 7311ab5e2a
7 changed files with 260 additions and 5 deletions

View File

@@ -31,10 +31,22 @@ interface ImportBIReportResponse
importedCount: number,
}
// BI坐席渗透率报表记录
interface BITelsalerAttachingRateReportRecord
{
departmentName: string;
telsalerName: string;
motoPremium: number;
nomotoPremium: number;
attachingRatePresentMonth: number;
attachingRateChange: number;
}
interface QueryBITelsalerAttachingRateReportResponse
{
success: boolean,
message: string,
records: BITelsalerAttachingRateReportRecord[];
}
type ImportBIReportResponseHandler = ( response: ImportBIReportResponse, error?: any ) => void;
@@ -81,5 +93,7 @@ export {
type ImportBIReportRequest,
type ImportBIReportResponse,
type ImportBIReportResponseHandler,
type BITelsalerAttachingRateReportRecord,
type QueryBITelsalerAttachingRateReportResponse,
importBIReport
};