同步框架更新
This commit is contained in:
@ -1,26 +0,0 @@
|
||||
package com.xjrsoft.magicapi.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.xjrsoft.magicapi.service.IInterfaceAuthService;
|
||||
import com.xjrsoft.system.entity.InterfaceAuth;
|
||||
import com.xjrsoft.system.mapper.InterfaceAuthMapper;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 接口权限表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author zlf
|
||||
* @since 2022-11-03
|
||||
*/
|
||||
@Service
|
||||
public class InterfaceAuthServiceImpl extends ServiceImpl<InterfaceAuthMapper, InterfaceAuth> implements IInterfaceAuthService {
|
||||
|
||||
@Override
|
||||
public List<String> loadAuthInterfaceIdsOfUser(Long userId) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user