package com.java110.store.bmo.collection; import com.java110.po.purchase.PurchaseApplyPo; import org.springframework.http.ResponseEntity; public interface IGoodsCollectionBMO { /** * 物品领用 * @param purchaseApplyPo * @return */ ResponseEntity collection(PurchaseApplyPo purchaseApplyPo); }