xin
2025-06-04 6ae372817543fc46f6afa00de44daa557036978b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.oying.modules.pc.product.service;
 
import com.oying.modules.pc.product.domain.dto.ProductMerchantCreateRequest;
import com.oying.modules.pc.product.domain.dto.ProductMerchantUpdateRequest;
 
import java.util.List;
 
public interface ProductMerchantService {
 
    void create(Long storeId, ProductMerchantCreateRequest request);
    void update(Long storeId, ProductMerchantUpdateRequest request);
    void batchDelete(List<Long> ids);
    void putOnShelf(Long productId);
    void takeOffShelf(Long productId);
 
}