| | |
| | | package com.gkhy.fourierSpecialGasMonitor.service; |
| | | |
| | | import com.gkhy.fourierSpecialGasMonitor.commons.domain.Result; |
| | | import com.gkhy.fourierSpecialGasMonitor.commons.model.PageQuery; |
| | | import com.gkhy.fourierSpecialGasMonitor.entity.DeviceExceptionLog; |
| | | import com.gkhy.fourierSpecialGasMonitor.entity.query.DeviceExcLogPageQuery; |
| | | |
| | | /** |
| | | * @author Mr.huang |
| | |
| | | */ |
| | | public interface DeviceExceptionLogService { |
| | | DeviceExceptionLog save(DeviceExceptionLog log); |
| | | |
| | | Result deviceExcLogPage(PageQuery<DeviceExcLogPageQuery> pageQuery); |
| | | |
| | | DeviceExceptionLog getLastLog(); |
| | | |
| | | |
| | | } |