1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package cn.iocoder.yudao.module.srm.service.statistics;
|
| import cn.iocoder.yudao.module.srm.controller.admin.statistics.vo.SrmTenderStatisticsRespVO;
|
| /**
| * SRM 统计分析 Service 接口
| */
| public interface SrmStatisticsService {
|
| /**
| * 获取招标统计数据
| *
| * @param year 统计年份
| */
| SrmTenderStatisticsRespVO getTenderStatistics(String year);
|
| }
|
|