IUpdateGroupBuyBMO.java 343 B

1234567891011121314151617181920
  1. package com.java110.goods.bmo.groupBuy;
  2. import com.java110.po.groupBuy.GroupBuyPo;
  3. import org.springframework.http.ResponseEntity;
  4. public interface IUpdateGroupBuyBMO {
  5. /**
  6. * 修改拼团购买
  7. * add by wuxw
  8. *
  9. * @param groupBuyPo
  10. * @return
  11. */
  12. ResponseEntity<String> update(GroupBuyPo groupBuyPo);
  13. }