value
2024-05-12 3b75c8cf561035c41d25d5b8765a7c89375ca264
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
package com.yuanchu.mom.service;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yuanchu.mom.dto.InsOrderPlanDTO;
import com.yuanchu.mom.pojo.InsOrder;
import com.yuanchu.mom.pojo.InsSample;
 
import java.util.Map;
 
/**
 * 检验任务-业务层
 */
public interface InsOrderPlanService {
    Map<String,Object> selectInsOrderPlanList(Page page, InsOrderPlanDTO insOrderPlanDTO);
 
    boolean claimInsOrderPlan(InsOrderPlanDTO entity);
 
    void saveInsContext(Map<String, Object> insContext);
 
    Map<String, Object> doInsOrder(Integer id, String laboratory);
 
    int upPlanUser(Integer userId, Integer orderId);
 
    int verifyPlan(Integer orderId, String laboratory, Integer type, String tell);
 
    int submitPlan(Integer orderId, String laboratory, Integer verifyUser);
}