lyh
2025-02-28 1becd6d46123723bd2b898fd565b4331fb2cb2d8
1
2
3
4
5
6
7
8
9
10
11
package org.jeecg.modules.flow.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.jeecg.modules.flow.entity.UserRole;
import org.springframework.stereotype.Service;
 
import java.util.List;
@Service
public interface PlmCommonUtilsMapper extends BaseMapper<UserRole> {
    List<UserRole> queryAllRoleList();
}