yangys
2024-04-02 6bed83e92f67954cd2135071133329f2205efe4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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<User> {
    List<User> selectUserPage(IPage<User> page, @Param("user") User user, @Param("deptIdList") List<Long> deptIdList, @Param("tenantId") String tenantId);
 
    User getUser(String tenantId, String account, String password);
 
    List<UserExcel> exportUser(@Param("ew") Wrapper<User> queryWrapper);
 
    List<UserAccountVO> getUnbindAccountList(@Param("userId") Long userId, @Param("tel") String tel);
}