qushaowei
2024-04-07 63a5530a85e6eaf7f8be733e87d32af2d16477a8
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
package org.jeecg.modules.eam.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.jeecg.modules.eam.entity.InspectionOrder;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.eam.model.InspectionCycleVo;
 
import java.util.List;
import java.util.Map;
 
/**
 * @Description: mom_eam_inspection_order
 * @Author: jeecg-boot
 * @Date:   2023-04-11
 * @Version: V1.0
 */
public interface IInspectionOrderService extends IService<InspectionOrder> {
 
    //根据设备获取点检周期 (手动生成日常点检工单)
    List<InspectionCycleVo> getInspectionCycleByEqId(String inspectionStandardId);
 
    //根据设备,点检周期获取点检标准下的点检项目 (手动生成日常点检工单)
    List<Map<String, Object>> getInspectionProjectId(String inspectionStandardId,String inspectionCycleId);
 
    //获取日常点检工单
    IPage<Map<String, Object>> getInspectionOrderList(Integer pageNo, Integer pageSize, Map<String, Object> params);
 
    //点检工单编辑时,回显点检羡慕 (手动生成日常点检工单)
    List<Map<String, Object>> getInspectionOrderDetailByOrderId(String inspectionOrderId);
 
 
    /**
     *创建日常点检工单时 派工方式为自动派工时根据班组获取人员
     * 2023-8-3 qsw
     */
    IPage<Map<String, Object>> findUserList(Integer pageNo, Integer pageSize, Map<String, Object> params);
 
    IPage<Map<String, Object>> findDayInspectionProjectList(Integer pageNo, Integer pageSize, Map<String, Object> params);
 
    IPage<Map<String, Object>> findWeekInspectionProjectList(Integer pageNo, Integer pageSize, Map<String, Object> params);
 
}