| | |
| | | |
| | | import com.oying.modules.pc.product.domain.dto.ProductMerchantCreateRequest; |
| | | import com.oying.modules.pc.product.domain.dto.ProductMerchantUpdateRequest; |
| | | import com.oying.modules.pc.product.events.ProductAuditVerdictEvent; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface ProductMerchantService { |
| | | |
| | | void create(Long storeId, ProductMerchantCreateRequest request); |
| | | void update(Long storeId, ProductMerchantUpdateRequest request); |
| | | void create(ProductMerchantCreateRequest request); |
| | | void update(ProductMerchantUpdateRequest request); |
| | | void updateImages(ProductMerchantUpdateRequest request); |
| | | void updateLabels(ProductMerchantUpdateRequest request); |
| | | void batchDelete(List<Long> ids); |
| | | void putOnShelf(Long productId); |
| | | void takeOffShelf(Long productId); |
| | | void handleAuditVerdictEvent(ProductAuditVerdictEvent event); |
| | | |
| | | } |