6 天以前 0c23c1e9b9e06ffc570edac28ee45555b772b99c
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
28
29
package com.ruoyi.safety.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.safety.dto.SafetyInspectionTodayStatistics;
import com.ruoyi.safety.dto.SafetyInspectionTrendStat;
import com.ruoyi.safety.dto.SafetyInspectionTypeStat;
import com.ruoyi.safety.dto.SafetyInspectorStat;
import com.ruoyi.safety.pojo.SafetyInspectionRecord;
 
import java.util.List;
 
public interface SafetyInspectionRecordService extends SafetyBaseService<SafetyInspectionRecord> {
 
    IPage<SafetyInspectionRecord> queryPage(Page<SafetyInspectionRecord> page,
                                            SafetyInspectionRecord query,
                                            String startDate,
                                            String endDate);
 
    SafetyInspectionTodayStatistics getTodayStatistics();
 
    List<SafetyInspectionTrendStat> getTrendStatistics(String startDate, String endDate);
 
    List<SafetyInspectionTypeStat> getTypeStatistics(String startDate, String endDate);
 
    List<SafetyInspectorStat> getInspectorStatistics(String startDate, String endDate);
 
    List<SafetyInspectionRecord> syncMockSubsystemData();
}