java110
2020-10-12 0fe7faa4395a8f3e2dfcc41818de5fa715c57518
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 IDeleteProductDetailBMO {
 
 
    /**
     * 修改产品属性
     * add by wuxw
     * @param productDetailPo
     * @return
     */
    ResponseEntity<String> delete(ProductDetailPo productDetailPo);
 
 
}