| | |
| | | import com.zy.asrs.entity.DeviceError; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface DeviceErrorService extends IService<DeviceError> { |
| | | |
| | | DeviceError selectByDeviceAndDeviceId(String device, Integer deviceId); |
| | |
| | | |
| | | Integer deleteDeviceError(String device, Integer deviceId); |
| | | |
| | | List<DeviceError> selectDeviceErrorList(Long id, String device, Integer deviceId, Integer curr, Integer limit) ; |
| | | |
| | | Long selectDeviceErrorListTotal(Long id,String device, Integer deviceId) ; |
| | | } |