package com.java110.goods.bmo.productCategory; import com.java110.dto.product.ProductCategoryDto; import org.springframework.http.ResponseEntity; public interface IGetProductCategoryBMO { /** * 查询产品目录 * add by wuxw * @param productCategoryDto * @return */ ResponseEntity get(ProductCategoryDto productCategoryDto); }