| | |
| | | * @param id |
| | | * @param remainMoney |
| | | */ |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public void updateIcCardRemainMoney(Long id , Double remainMoney){ |
| | | seClientCardDao.updateMoney(id,remainMoney); |
| | | } |
| | |
| | | * @param id |
| | | * @param remainMoney |
| | | */ |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public void updateVirIcCardRemainMoney(Long id , Double remainMoney){ |
| | | seVirtualCardDao.updateMoney(id,remainMoney); |
| | | } |
| | |
| | | public RmCommandHistory getCommandLog(String commandId){ |
| | | return rmCommandHistoryDao.selectByPrimaryKey(Long.parseLong(commandId)) ; |
| | | } |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public void updateCommandLog(RmCommandHistory po){ |
| | | rmCommandHistoryDao.updateByPrimaryKey(po) ; |
| | | } |