xin
2025-07-02 2116b5b5802c0de0f126f85cf2ac56a732639e82
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);
 
}