lyh
2025-06-25 e756af0f5bfd1addbd5d5c145441fb34aad91a28
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.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;
    }
}