init
This commit is contained in:
@@ -1,14 +0,0 @@
|
||||
package com.ruoyi.cai.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.cai.domain.AccountRecharge;
|
||||
|
||||
/**
|
||||
* 充值记录Service接口
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-22
|
||||
*/
|
||||
public interface AccountRechargeService extends IService<AccountRecharge> {
|
||||
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
package com.ruoyi.cai.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.cai.domain.AccountRecharge;
|
||||
import com.ruoyi.cai.mapper.AccountRechargeMapper;
|
||||
import com.ruoyi.cai.service.AccountRechargeService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 充值记录Service业务层处理
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-22
|
||||
*/
|
||||
@Service
|
||||
public class AccountRechargeServiceImpl extends ServiceImpl<AccountRechargeMapper, AccountRecharge> implements AccountRechargeService {
|
||||
}
|
||||
Reference in New Issue
Block a user