供应商修改 同步

This commit is contained in:
2025-04-12 11:09:30 +08:00
parent 69ba9ec48c
commit ffb4a5eb46
4 changed files with 75 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ public class ShopVendor implements Serializable {
* 店铺Id
*/
private Long shopId;
private Long syncId;
/**
* 排序
*/

View File

@@ -77,4 +77,12 @@ public interface ShopSyncService {
* @param sourceProdId 主店商品ID
*/
void syncConsProBySourceShop(Long sourceShopId, Long sourceProdId, Long sysUserId);
/**
* 同步供应商 开了同步耗材开关的子店铺
*
* @param sourceShopId 主店ID
* @param vendorId 供应商Id
*/
void syncVendorBySourceShop(Long sourceShopId, Long vendorId, Long sysUserId);
}