package com.ruoyi.project.system.service.impl; import com.ruoyi.project.system.domain.vo.SysUserDeptVo; import com.ruoyi.project.system.mapper.SysUserDeptMapper; import com.ruoyi.project.system.service.ISysUserDeptService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.Collections; import java.util.List; @Service public class SysUserDeptServiceImpl implements ISysUserDeptService { @Autowired private SysUserDeptMapper sysUserDeptMapper; @Override public List selectUserDeptList(SysUserDeptVo userDeptVo) { return sysUserDeptMapper.selectUserDeptList(userDeptVo); } }