修改会员添加报错

This commit is contained in:
韩鹏辉
2024-05-31 15:16:24 +08:00
parent 689db4cf1b
commit 70b29bd3ff
8 changed files with 70 additions and 20 deletions

View File

@@ -26,4 +26,7 @@ public interface TbShopInfoMapper {
List<TbShopInfo> selectAll();
List<TbShopInfo> selectAllByCreateTime();
}

View File

@@ -25,6 +25,8 @@ public interface TbShopUserMapper {
List<TbShopUser> selectByShopId(@Param("shopId") String shopId,@Param("phone") String phone);
List<TbShopUser> selectByShopIdAndPhone(@Param("shopId") String shopId,@Param("phone") String phone);
TbShopUser selectByUserIdAndShopId(@Param("userId") String userId,@Param("shopId") String shopId);
TbShopUser selectByShopIdAndDdynamicCode(@Param("shopId") String shopId,@Param("memberAccount") String memberAccount);