qushaowei
2024-03-14 f11a932fd83e13cd8d7726e053181bc40f3a3240
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package org.jeecg.modules.eam.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.eam.entity.CalibrationOrder;
import org.jeecg.modules.eam.model.MaintenanceCycleVo;
 
import java.util.List;
import java.util.Map;
 
/**
 * @Description: 检定工单
 * @Author: jeecg-boot
 * @Date: 2023-04-23
 * @Version: V1.0
 */
public interface CalibrationOrderMapper extends BaseMapper<CalibrationOrder> {
 
    /**
     * 设备检定工单 创建时通过设备获取设备精度参数
     * qsw 2023-7-18
     */
    List<Map<String, Object>> getPrecisionParameterList(@Param("equipmentId")String equipmentId);
 
    /**
     *首页公司级 技术状态数量统计
     * qsw 2024-3-13
     */
    List<Map<String, Object>> getFactoryEquipmentTechnologyStatusList();
 
    /**
     *首页公司级 设备报修情况统计
     * qsw 2024-3-13
     */
    List<Map<String, Object>> getFactoryReportRepairEquipmentList();
 
    /**
     *首页公司级 本月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getFactoryThisMonthMaintenanceList();
 
    /**
     *首页公司级 下月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getFactoryNextMonthMaintenanceList();
 
    /**
     *首页公司级 下下月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getFactoryNextNextMonthMaintenanceList();
 
    /**
     *首页公司级 本月三保完成数量
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getFactoryThisMonthMaintenanceFinishList();
 
    /**
     *首页(二级页面)技术状态数量统计
     * qsw 2024-3-13
     */
    List<Map<String, Object>> getEquipmentTechnologyStatusList(@Param("factoryModelId")String factoryModelId);
 
    /**
     *首页(二级页面)设备报修情况统计
     * qsw 2024-3-13
     */
    List<Map<String, Object>> getReportRepairEquipmentList(@Param("factoryModelId")String factoryModelId);
 
    /**
     *首页(二级页面)本月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getThisMonthMaintenanceList(@Param("factoryModelId")String factoryModelId);
 
    /**
     *首页(二级页面)下月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getNextMonthMaintenanceList(@Param("factoryModelId")String factoryModelId);
 
    /**
     *首页(二级页面)下下月三保计划
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getNextNextMonthMaintenanceList(@Param("factoryModelId")String factoryModelId);
 
    /**
     *首页(二级页面)本月三保完成数量
     * qsw 2024-3-14
     */
    List<Map<String, Object>> getThisMonthMaintenanceFinishList(@Param("factoryModelId")String factoryModelId);
 
}