java110
2020-07-17 35df62dd2388a9b470b8890ce786970b09eba86e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.java110.store.bmo.collection;
 
import com.java110.po.purchase.PurchaseApplyPo;
import org.springframework.http.ResponseEntity;
 
public interface IGoodsCollectionBMO {
 
    /**
     * 物品领用
     * @param purchaseApplyPo
     * @return
     */
    ResponseEntity<String> collection(PurchaseApplyPo purchaseApplyPo);
}