| 1234567891011121314151617181920 |
- package com.java110.goods.bmo.groupBuy;
- import com.java110.po.groupBuy.GroupBuyPo;
- import org.springframework.http.ResponseEntity;
- public interface IUpdateGroupBuyBMO {
- /**
- * 修改拼团购买
- * add by wuxw
- *
- * @param groupBuyPo
- * @return
- */
- ResponseEntity<String> update(GroupBuyPo groupBuyPo);
- }
|