chenrui
4 天以前 2382a47279b6ed520593539f73aa5e512b4f016e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.project.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.project.system.domain.SysUserDept;
import com.ruoyi.project.system.domain.vo.SysUserDeptVo;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
@Mapper
public interface SysUserDeptMapper extends BaseMapper<SysUserDept> {
 
    List<SysUserDeptVo> selectUserDeptList(@Param("userDeptVo") SysUserDeptVo userDeptVo);
}