zss
2024-04-17 ad5fa78540fdd7b5470072e0ead2b650afdca2fd
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.yuanchu.mom.service;
 
 
import java.util.Map;
 
public interface ReportService {
 
    //每日业务统计
    Map<String,Object> businessStatisticsByDay();
 
    //检测项目统计
    Map<String,Object> testProductByDay();
}