| | |
| | | private RmLossLastMapper rmLossLastMapperDao ;//控制器漏损水量统计最新数据DAO |
| | | @Autowired |
| | | private RmLossHistoryMapper rmLossHistoryMapperDao ;//控制器漏损水量统计历史数据DAO |
| | | @Autowired |
| | | private RmCommandHistoryMapper rmCommandHistoryDao ;//远程命令日志相关 |
| | | |
| | | //@Autowired |
| | | //@Lazy |
| | |
| | | return null ; |
| | | } |
| | | |
| | | ////////////////////////////////////////////////////// |
| | | // |
| | | // 命令日志相关 |
| | | // |
| | | ////////////////////////////////////////////////////// |
| | | public RmCommandHistory getCommandLog(String commandId){ |
| | | return rmCommandHistoryDao.selectByPrimaryKey(Long.parseLong(commandId)) ; |
| | | } |
| | | public void updateCommandLog(RmCommandHistory po){ |
| | | rmCommandHistoryDao.updateByPrimaryKeySelective(po) ; |
| | | } |
| | | |
| | | |
| | | } |