修改会员充值判断
This commit is contained in:
parent
1468889c89
commit
78418eccf3
|
|
@ -409,6 +409,10 @@ public class PayService {
|
|||
return "用户信息不存在";
|
||||
}
|
||||
|
||||
if(!"1".equals(tbShopUser.getIsVip().toString())){
|
||||
tbShopUser.setIsVip(Byte.parseByte("1"));
|
||||
}
|
||||
|
||||
//修改客户资金
|
||||
tbShopUser.setAmount(tbShopUser.getAmount().add(memberIn.getAmount()));
|
||||
tbShopUser.setUpdatedAt(System.currentTimeMillis());
|
||||
|
|
|
|||
Loading…
Reference in New Issue