lyh
2025-02-28 1becd6d46123723bd2b898fd565b4331fb2cb2d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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<PlmCommonUtilsMapper, UserRole> implements IPlmCommonUtilsService {
    @Autowired
    private PlmCommonUtilsMapper plmCommonUtilsMapper;
 
    @Override
    public List<UserRole> queryAllRoleList() {
        List<UserRole> userRoles = baseMapper.queryAllRoleList();
        return userRoles;
    }
}