From 38213237cc11c9bd3f11b0fa69c56ef663049a4b Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Fri, 29 Aug 2025 11:40:54 +0800
Subject: [PATCH] feat: 店铺地址和坐标合并
---
oying-system/src/main/java/com/oying/modules/system/mapper/UserMapper.java | 9 +++++----
1 files changed, 5 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 d506a8c..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
@@ -27,6 +27,10 @@
User findByUsername(@Param("username") String username);
+ User findByOpenid(@Param("openid") String openid);
+
+ User findByRiderOpenId(@Param("riderOpenId") String riderOpenId);
+
User findByEmail(@Param("email") String email);
User findByPhone(@Param("phone") String phone);
@@ -39,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