数据
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package com.ruoyi.cai.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.cai.domain.AccountBlack;
|
||||
|
||||
/**
|
||||
* 账户黑名单Service接口
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-08-03
|
||||
*/
|
||||
public interface AccountBlackService extends IService<AccountBlack> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.ruoyi.cai.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.cai.domain.AccountBlack;
|
||||
import com.ruoyi.cai.mapper.AccountBlackMapper;
|
||||
import com.ruoyi.cai.service.AccountBlackService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 账户黑名单Service业务层处理
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-08-03
|
||||
*/
|
||||
@Service
|
||||
public class AccountBlackServiceImpl extends ServiceImpl<AccountBlackMapper,AccountBlack> implements AccountBlackService {
|
||||
}
|
||||
Reference in New Issue
Block a user