xin
2025-06-24 3e5c32288447da14ad6032aeb5bf5f79fa9a0560
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);
 
}