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