Fixiaobai
2023-09-07 e29f147aab5b0b0b794d611b522b67b94423e3cf
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
package com.yuanchu.limslaboratory.service;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2023-08-09
 */
public interface PlanService {
    /**
     * 查询检验计划
     * @return
     */
    List<Map<String,Object>> selectAllPlan(String code , String beginTime, String endTime,Integer status,Boolean isLookMe);
 
    /**
     * 分配-->选择检验人
     * @return
     */
    List<Map<String,Object>> choosecheck();
 
    /**
     * 分配-->选择设备
     * @return
     */
    List<Map<String,Object>> chooseinstum();
 
    /**
     * 分配
     * @return
     */
    String distribution(Integer id, Integer userId, Integer instrumentId);
 
    /**
     * 检验
     * @param id
     * @param value
     * @return
     */
    Integer check(Integer id, String value);
 
    /**
     * 上报
     * @param id
     * @return
     */
    String reported(Integer id);
}