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 ApiException, IOException;
|
|
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;
|
|
}
|