Crunchy
2024-07-18 95e69381eeb4a589e9ab7b8e3b967ceb36d13b1d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.yuanchu.mom.service;
 
 
import com.yuanchu.mom.pojo.Schedule;
 
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.List;
import java.util.Map;
 
public interface ReportService {
 
    //每日业务统计
    Map<String,Object> businessStatisticsByDay();
 
    //检测项目统计
    Map<String,Object> testProductByDay();
 
    //首页-->日历任务图
    Map<String,Object> calendarWorkByWeek();
 
    //首页-->添加日程
    int addSchedule(String time, String text);
 
    //首页-->我的日程
    List<Schedule> ScheduleByMe(String date);
}