同步框架更新

This commit is contained in:
yaoyn
2025-02-15 17:05:09 +08:00
parent 29b5c68564
commit 9b7d27a2b4
141 changed files with 585 additions and 133 deletions

View File

@ -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;
}
}