IGetGroupBuyBMO.java 342 B

1234567891011121314151617181920
  1. package com.java110.goods.bmo.groupBuy;
  2. import com.java110.dto.groupBuy.GroupBuyDto;
  3. import org.springframework.http.ResponseEntity;
  4. public interface IGetGroupBuyBMO {
  5. /**
  6. * 查询拼团购买
  7. * add by wuxw
  8. *
  9. * @param groupBuyDto
  10. * @return
  11. */
  12. ResponseEntity<String> get(GroupBuyDto groupBuyDto);
  13. }