From 919acbd3e8148ffc5dfabc6d6468fa90f868a3cc Mon Sep 17 00:00:00 2001
From: 彭雪彬 <1724387007@qq.com>
Date: Tue, 21 Oct 2025 17:49:45 +0800
Subject: [PATCH] 邀请新用户记录添加
---
oying-system/src/main/java/com/oying/modules/system/mapper/UserMapper.java | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/oying-system/src/main/java/com/oying/modules/system/mapper/UserMapper.java b/oying-system/src/main/java/com/oying/modules/system/mapper/UserMapper.java
index 4598cee..e978d5a 100644
--- a/oying-system/src/main/java/com/oying/modules/system/mapper/UserMapper.java
+++ b/oying-system/src/main/java/com/oying/modules/system/mapper/UserMapper.java
@@ -29,6 +29,8 @@
User findByOpenid(@Param("openid") String openid);
+ User findByRiderOpenId(@Param("riderOpenId") String riderOpenId);
+
User findByEmail(@Param("email") String email);
User findByPhone(@Param("phone") String phone);
@@ -41,15 +43,12 @@
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);
+
}
--
Gitblit v1.9.3