支付修改

This commit is contained in:
seesaw
2024-10-21 11:32:48 +08:00
parent 08863c51ab
commit 862823b82f
8 changed files with 52 additions and 214 deletions

View File

@ -9,5 +9,18 @@ import java.math.BigDecimal;
*/
public interface CardApi {
/**
* 微信充值
* @param money
* @param userId
*/
void recharge(BigDecimal money,Long userId);
/**
* 微信提现
* @param amount
* @param userId
*/
void wxDraw(Integer amount, Long userId);
}