xin
2025-06-04 9931d6f56816aecb09333cef2d12777c08793547
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.oying.modules.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.oying.modules.system.domain.User;
import com.oying.modules.system.domain.dto.UserQueryCriteria;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import java.util.Date;
import java.util.List;
import java.util.Set;
 
/**
 * @author Z
 * @date 2023-06-20
 */
@Mapper
public interface UserMapper extends BaseMapper<User> {
 
    Long countAll(@Param("criteria") UserQueryCriteria criteria);
 
    List<User> findAll(@Param("criteria") UserQueryCriteria criteria);
 
    IPage<User> findAll(@Param("criteria") UserQueryCriteria criteria, Page<Object> page);
 
    User findByUsername(@Param("username") String username);
 
    User findByOpenid(@Param("openid") String openid);
 
    User findByEmail(@Param("email") String email);
 
    User findByPhone(@Param("phone") String phone);
 
    @Select("update sys_user set password = #{password} , pwd_reset_time = #{lastPasswordResetTime} where username = #{username}")
    void updatePass(@Param("username") String username, @Param("password") String password, @Param("lastPasswordResetTime") Date lastPasswordResetTime);
 
    @Select("update sys_user set email = #{email} where username = #{username}")
    void updateEmail(@Param("username") String username, @Param("email") String email);
 
    List<User> findByRoleId(@Param("roleId") Long roleId);
 
    List<User> findByRoleDeptId(@Param("deptId") Long deptId);
 
    List<User> findByMenuId(@Param("menuId") Long menuId);
 
    int countByJobs(@Param("jobIds") Set<Long> jobIds);
 
    int countByDepts(@Param("deptIds") Set<Long> deptIds);
 
    int countByRoles(@Param("roleIds") Set<Long> roleIds);
 
    void resetPwd(@Param("userIds") Set<Long> userIds, @Param("pwd") String pwd);
}