package com.nanometer.smartlab.service; import com.nanometer.smartlab.entity.SysContainerSensors; import com.nanometer.smartlab.entity.SysWarehouse; import com.nanometer.smartlab.entity.dto.ContainerStatusMngDto; import org.springframework.transaction.annotation.Transactional; import java.sql.SQLException; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; public interface SysContainerSensorsService { public int add(SysContainerSensors sysContainerSensors) throws RuntimeException; public void syncSysContainerSensors(List sensorsList) throws Exception; public SysContainerSensors get(String id) throws RuntimeException; public List getListBySelective(Map params) throws RuntimeException; public int countBySelective(Map params) throws RuntimeException; List selectInfo(Map params) throws RuntimeException; int countAll(Map params) throws RuntimeException; ContainerStatusMngDto getRowData(String rowKey); //获得 }