| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.ydtech.modules.admin.service;
- import com.ydtech.core.page.HttpResult;
- import com.ydtech.modules.admin.model.dto.AllpremiumDto;
- import com.ydtech.modules.admin.model.dto.EmployeeIncreaseReportAllDto;
- import com.ydtech.modules.admin.model.dto.PremiumReportAllDto;
- import com.ydtech.modules.admin.model.dto.RevenueReportAllDto;
- import com.ydtech.modules.admin.model.vo.ReportQueryVo;
- /**
- * @version
- * @author: hxl
- * @Date: 2024/6/5 15:24
- * @Description: app 相关报表统计
- */
- public interface AppReportService {
- /**
- * @version
- * @author: hxl
- * @Date: 2024/6/5 15:58
- * @Description: 保费报表统计
- */
- HttpResult<PremiumReportAllDto> premiumReport(ReportQueryVo reportQueryVo);
- /**
- * @version
- * @author: hxl
- * @Date: 2024/6/5 16:03
- * @Description: 增援报表统计
- */
- HttpResult<EmployeeIncreaseReportAllDto> employeeIncreaseReport(ReportQueryVo reportQueryVo);
- /**
- * @version
- * @author: hxl
- * @Date: 2024/6/5 16:04
- * @Description: 收入报表统计
- */
- HttpResult<RevenueReportAllDto> revenueReport(ReportQueryVo reportQueryVo);
- /**
- * @version
- * @author: hxl
- * @Date: 2024/6/7 15:16
- * @Description: 获取所有的签单数和签单金额
- */
- AllpremiumDto getAllpremium(String year);
- }
|