罗媛媛
2024-04-01 edbb9450c78019e7cea4bfb0d0496782e90a4a43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
 
    Map<String, Object> doInsOrder(Integer id, String laboratory);
 
    int upPlanUser(Integer userId, Integer orderId);
 
    int verifyPlan(Integer orderId, String laboratory, Integer type, String tell);
}