zss
2024-10-18 1f15333b0a97a327865f7aab8f1e3f9ba8fc16f8
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);
}