package com.panzhihua.auth.service.impl;
|
|
import java.util.Set;
|
|
import org.springframework.stereotype.Service;
|
|
import com.panzhihua.auth.service.ISysRoleService;
|
|
/**
|
* @program: springcloud_k8s_panzhihuazhihuishequ
|
* @description: ISysRoleService
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2020-11-20 13:27
|
**/
|
@Service
|
public class ISysRoleServiceImpl implements ISysRoleService {
|
@Override
|
public Set<String> selectRolePermissionByUserId(Long userId) {
|
return null;
|
}
|
}
|