package com.qianwen.smartman.modules.system.mapper; import com.baomidou.mybatisplus.core.conditions.Wrapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import java.util.List; import org.apache.ibatis.annotations.Param; import com.qianwen.smartman.modules.system.entity.User; import com.qianwen.smartman.modules.system.excel.UserExcel; import com.qianwen.smartman.modules.system.vo.UserAccountVO; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/mapper/UserMapper.class */ public interface UserMapper extends BaseMapper { List selectUserPage(IPage page, @Param("user") User user, @Param("deptIdList") List deptIdList, @Param("tenantId") String tenantId); User getUser(String tenantId, String account, String password); List exportUser(@Param("ew") Wrapper queryWrapper); List getUnbindAccountList(@Param("userId") Long userId, @Param("tel") String tel); }