java110
2020-10-11 df774e4fd262b0a39e52152f166ccddb2aa9f90e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.java110.goods.bmo.productDetail;
import com.java110.po.productDetail.ProductDetailPo;
import org.springframework.http.ResponseEntity;
 
public interface IUpdateProductDetailBMO {
 
 
    /**
     * 修改产品属性
     * add by wuxw
     * @param productDetailPo
     * @return
     */
    ResponseEntity<String> update(ProductDetailPo productDetailPo);
 
 
}