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);
|
}
|