|
|
@@ -78,11 +78,11 @@ public class AccountServiceImpl implements IAccountService {
|
|
|
*/
|
|
|
@Override
|
|
|
public void modfiyAccount(String channel, String userId, String accType,
|
|
|
- String amt, String transType, String payFlowNo, String remrk)
|
|
|
+ String amt, String transType, String payFlowNo, String remrk,String equipmentId )
|
|
|
throws BusinessCodeException, MINBusinessException {
|
|
|
|
|
|
VmAccountExample accExp = new VmAccountExample();
|
|
|
- accExp.createCriteria().andChannelEqualTo(channel).andUsridEqualTo(userId).andTypeEqualTo(accType);
|
|
|
+ accExp.createCriteria().andChannelEqualTo(channel).andUsridEqualTo(userId).andTypeEqualTo(accType).andEquipmentIdEqualTo(equipmentId);
|
|
|
|
|
|
List<VmAccount> accList = Service.lookup(IMINDataBaseService.class).getMybatisMapper(VmAccountMapper.class).selectByExample(accExp);
|
|
|
if(accList == null || accList.size() == 0) {
|