xin
2025-07-19 c195fedbf4efd4bec5e2ffa14b57b2b81f15f17d
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);
 
}