报错修改

This commit is contained in:
2025-09-24 11:05:51 +08:00
parent 307ebac8fa
commit a31bdc2396
19 changed files with 103 additions and 273 deletions

View File

@@ -25,4 +25,6 @@ public interface AShopUserService {
ShopUserSummaryDTO getSummary(Long shopId, Integer isVip);
ShopUser getDetail(Integer id, Integer userId);
Long updateMoney(ShopUserMoneyEditDTO shopUserEditDTO);
}

View File

@@ -19,7 +19,7 @@ public interface ShopUserService extends IService<ShopUser> {
/**
* 返回流水Id
*/
Long updateMoney(Long shopId, ShopUserMoneyEditDTO shopUserEditDTO);
Long updateMoney(ShopUserMoneyEditDTO shopUserEditDTO);
ShopUser getShopUserInfo(Long shopId, long userId);

View File

@@ -1,17 +0,0 @@
package com.czg.account.service;
/**
* 店铺用户同步Service
* @author tankaikai
* @since 2025-04-08 10:17
*/
public interface ShopUserSyncService {
/**
* 同步合并主分店会员信息
*
* @param headShopId 主店id
* @param branchShopId 分店id
*/
void syncMergeShopUser(Long headShopId, Long branchShopId);
}

View File

@@ -29,4 +29,8 @@ public interface UShopUserService {
ShopUserDetailDTO getInfo(Long shopId, long userId);
/**
* 返回流水Id
*/
Long updateMoney(ShopUserMoneyEditDTO shopUserEditDTO);
}