消息通知

This commit is contained in:
2025-04-10 10:38:03 +08:00
parent a5e2ab26e3
commit 666b0f481e
3 changed files with 27 additions and 27 deletions

View File

@@ -12,7 +12,7 @@ public interface ShopSyncService {
* @param sourceShopId 源店铺ID
* @param targetShopId 目标店铺ID
*/
void sync(Long sourceShopId, Long targetShopId);
void sync(Long sourceShopId, Long targetShopId, Long sysUserId);
/**
* 同步单位(新增/修改字段/逻辑删除 不包含删除) 将源店铺的单位同步到 开了同步商品开关的子店铺
@@ -20,7 +20,7 @@ public interface ShopSyncService {
* @param sourceShopId 主店ID
* @param unitId 主店单位Id
*/
void syncUnitBySourceShop(Long sourceShopId, Long unitId);
void syncUnitBySourceShop(Long sourceShopId, Long unitId, Long sysUserId);
/**
* 同步规格(新增/修改字段/逻辑删除 不包含删除) 将源店铺的规格同步到 开了同步商品开关的子店铺
@@ -28,7 +28,7 @@ public interface ShopSyncService {
* @param sourceShopId 主店ID
* @param specId 主店规格Id
*/
void syncSpecBySourceShop(Long sourceShopId, Long specId);
void syncSpecBySourceShop(Long sourceShopId, Long specId, Long sysUserId);
/**
* 同步分类(新增/修改字段/逻辑删除 不包含删除) 将源店铺的分类同步到 开了同步商品开关的子店铺
@@ -36,7 +36,7 @@ public interface ShopSyncService {
* @param sourceShopId 主店ID
* @param categoryId 主店分类Id
*/
void syncCategoryBySourceShop(Long sourceShopId, Long categoryId);
void syncCategoryBySourceShop(Long sourceShopId, Long categoryId, Long sysUserId);
/**
* 同步商品 会同步Sku新增/修改字段/逻辑删除 不包含删除) 将源店铺的商品同步到 开了同步商品开关的子店铺
@@ -44,7 +44,7 @@ public interface ShopSyncService {
* @param sourceShopId 主店ID
* @param productId 主店商品Id
*/
void syncProductBySourceShop(Long sourceShopId, Long productId);
void syncProductBySourceShop(Long sourceShopId, Long productId, Long sysUserId);
/**
* 同步分组 (新增/修改字段/逻辑删除 不包含删除) 将源店铺的分组同步到 开了同步商品开关的子店铺
@@ -52,7 +52,7 @@ public interface ShopSyncService {
* @param sourceShopId 主店ID
* @param groupId 主店分组Id
*/
void syncGroupBySourceShop(Long sourceShopId, Long groupId);
void syncGroupBySourceShop(Long sourceShopId, Long groupId, Long sysUserId);
/**
* 同步耗材分组 (新增/修改字段/逻辑删除 不包含删除) 将源店铺的耗材分组同步到 开了同步耗材开关的子店铺
@@ -60,7 +60,7 @@ public interface ShopSyncService {
* @param sourceShopId 主店ID
* @param consGroupId 主店耗材分组Id
*/
void syncConsGroupBySourceShop(Long sourceShopId, Long consGroupId);
void syncConsGroupBySourceShop(Long sourceShopId, Long consGroupId, Long sysUserId);
/**
* 同步耗材信息(新增/修改字段/逻辑删除 不包含删除) 将源店铺的耗材信息同步到 开了同步耗材开关的子店铺
@@ -68,7 +68,7 @@ public interface ShopSyncService {
* @param sourceShopId 主店ID
* @param consInfoId 主店ID
*/
void syncConsInfoBySourceShop(Long sourceShopId, Long consInfoId);
void syncConsInfoBySourceShop(Long sourceShopId, Long consInfoId, Long sysUserId);
/**
* 同步商品绑定耗材关联关系 开了同步耗材开关的子店铺
@@ -76,5 +76,5 @@ public interface ShopSyncService {
* @param sourceShopId 主店ID
* @param sourceProdId 主店商品ID
*/
void syncConsProBySourceShop(Long sourceShopId, Long sourceProdId);
void syncConsProBySourceShop(Long sourceShopId, Long sourceProdId, Long sysUserId);
}