java110
2020-10-09 395afb2788b70d9ce7d95d4484fb7ddcea9b0048
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.java110.goods.bmo.productSpec;
import com.java110.dto.product.ProductSpecDto;
import org.springframework.http.ResponseEntity;
public interface IGetProductSpecBMO {
 
 
    /**
     * 查询产品规格
     * add by wuxw
     * @param  productSpecDto
     * @return
     */
    ResponseEntity<String> get(ProductSpecDto productSpecDto);
 
 
}