package org.jeecg.modules.dncFlow.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.jeecg.modules.dncFlow.entity.UserRole;
|
import org.jeecg.modules.dncFlow.mapper.PlmCommonUtilsMapper;
|
import org.jeecg.modules.dncFlow.service.IPlmCommonUtilsService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import java.util.List;
|
@Service
|
public class PlmCommonUtilsServiceImpl extends ServiceImpl<PlmCommonUtilsMapper, UserRole> implements IPlmCommonUtilsService {
|
@Autowired
|
private PlmCommonUtilsMapper plmCommonUtilsMapper;
|
|
@Override
|
public List<UserRole> queryAllRoleList() {
|
List<UserRole> userRoles = baseMapper.queryAllRoleList();
|
return userRoles;
|
}
|
}
|