郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.gkhy.safePlatform.safeCheck.rpc.apimodel;
 
import com.gkhy.safePlatform.safeCheck.rpc.apimodel.model.resp.SafeCheckTaskAndQuotaGBRfidAndExcpOrderRPCRespDTO;
import com.gkhy.safePlatform.safeCheck.rpc.apimodel.model.resp.SafeCheckTaskAndQuotaGBRfidRPCRespDTO;
import com.gkhy.safePlatform.safeCheck.rpc.apimodel.model.resp.SafeCheckTaskAndQuotasRPCRespDTO;
 
import java.util.List;
 
public interface SafeCheckTaskDataService {
 
    /**
     * @description 根据taskid获取巡检链数据并根据rfid进行分组以及该任务中的异常工单数据
     */
    SafeCheckTaskAndQuotaGBRfidAndExcpOrderRPCRespDTO getTaskAndQuotaDataGBrfidDataByTaskId(Long taskId);
 
    /**
     * @description 根据taskid获取所有的巡检链数据
     */
    List<SafeCheckTaskAndQuotasRPCRespDTO> getTaskAndQuotaRPCByTaskId(Long taskId);
}