gdg
2020-12-29 b06e4004a2ff3c4562da8b6d44decffa643b686b
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 com.nanometer.smartlab.service;
 
import java.io.IOException;
import java.util.List;
 
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.nanometer.smartlab.entity.SysUser;
import com.nanometer.smartlab.exception.ApiException;
 
public interface InterfaceService {
 
    public void registerTestCabinet(String userId, JSONObject jsonObject) throws ApiException;
 
    public void logoutTestCabinet(String userId, JSONObject jsonObject) throws ApiException;
 
    public void updateTestCabinet(String userId, JSONObject jsonObject) throws ApiException;
 
    public String openCabinetDoor(String userId, JSONObject jsonObject) throws ApiException;
 
    public void closeCabinetDoor(JSONObject jsonObject) throws ApiException;
 
    public void synchAllCabinet(JSONArray jsonObject) throws ApiException;
 
    public void alarm(JSONObject jsonObject) throws ApiException;
    
    public void alarmperson(JSONObject jsonObject) throws Exception;
 
    public void cabinetData(JSONArray jsonObject) throws ApiException;
 
    public JSONObject getContainerInfo(JSONObject jsonObject) throws ApiException;
 
    public JSONObject getReagentInfo(JSONObject jsonObject) throws ApiException;
 
    public JSONObject getUserInfo(JSONObject jsonObject) throws ApiException;
 
    public void AutheTestCabinet(String userId, JSONObject parseObject) throws ApiException;
 
    public List<SysUser> getUserListByContainerCode(String containerCode, String startTime,String endTime) throws ApiException;
 
    List<SysUser> getUserListByContainerCodeNew(String containerCode, String startTime, String endTime) throws ApiException;
}