zouyu
2026-01-16 f605b84620bf35bb02a2ee5ef2086c164b520e67
src/main/java/com/ruoyi/project/system/mapper/SysUserMapper.java
@@ -3,6 +3,7 @@
import java.util.ArrayList;
import java.util.List;
import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
@@ -70,6 +71,7 @@
     * @param user 用户信息
     * @return 结果
     */
    @InterceptorIgnore(tenantLine = "true")
    public int insertUser(SysUser user);
    /**
@@ -78,6 +80,7 @@
     * @param user 用户信息
     * @return 结果
     */
    @InterceptorIgnore(tenantLine = "true")
    public int updateUser(SysUser user);
    /**
@@ -87,6 +90,7 @@
     * @param avatar 头像地址
     * @return 结果
     */
    @InterceptorIgnore(tenantLine = "true")
    public int updateUserAvatar(@Param("userName") String userName, @Param("avatar") String avatar);
    /**
@@ -96,6 +100,7 @@
     * @param password 密码
     * @return 结果
     */
    @InterceptorIgnore(tenantLine = "true")
    public int resetUserPwd(@Param("userName") String userName, @Param("password") String password);
    /**
@@ -104,6 +109,7 @@
     * @param userId 用户ID
     * @return 结果
     */
    @InterceptorIgnore(tenantLine = "true")
    public int deleteUserById(Long userId);
    /**
@@ -112,6 +118,7 @@
     * @param userIds 需要删除的用户ID
     * @return 结果
     */
    @InterceptorIgnore(tenantLine = "true")
    public int deleteUserByIds(Long[] userIds);
    /**