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);
|
|
}
|