zepengdev
2025-09-17 c06d972894b536cd96b817c922fb73f69c9d1a71
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 ProductAdminService {
 
    void create(ProductMerchantCreateRequest request);
    void update(ProductMerchantUpdateRequest request);
    void delete(List<Long> ids);
 
}