code review:统计代码

This commit is contained in:
YunaiV
2023-10-11 12:32:28 +08:00
parent 704087ce86
commit fef808d88c
32 changed files with 73 additions and 181 deletions

View File

@ -1,10 +0,0 @@
package cn.iocoder.yudao.module.pay.api.wallet;
/**
* 钱包 API 接口
*
* @author owen
*/
public interface PayWalletApi {
}

View File

@ -1,24 +0,0 @@
package cn.iocoder.yudao.module.pay.api.wallet;
import cn.iocoder.yudao.module.pay.service.wallet.PayWalletRechargeService;
import cn.iocoder.yudao.module.pay.service.wallet.PayWalletTransactionService;
import org.springframework.stereotype.Service;
import org.springframework.validation.annotation.Validated;
import javax.annotation.Resource;
/**
* 钱包 API 接口实现类
*
* @author owen
*/
@Service
@Validated
public class PayWalletApiImpl implements PayWalletApi {
@Resource
private PayWalletRechargeService payWalletRechargeService;
@Resource
private PayWalletTransactionService payWalletTransactionService;
}