增加充值模块,接通支付宝充值

This commit is contained in:
xiongxiaoyang
2020-05-11 18:28:07 +08:00
parent d30c6bfd6e
commit c8d7a10d9f
25 changed files with 1021 additions and 224 deletions

View File

@ -117,4 +117,9 @@ public interface UserService {
void updatePassword(Long userId, String oldPassword, String newPassword);
/**
* 增加用户余额
* @param userId 用户ID
* @param amount 增加的余额 */
void addAmount(Long userId, int amount);
}