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 getUserListByContainerCode(String containerCode, String startTime,String endTime) throws ApiException; List getUserListByContainerCodeNew(String containerCode, String startTime, String endTime) throws ApiException; public void delalarmperson(JSONObject jsonObject) throws Exception; }