MyPurchaseService.java 497 B

123456789101112131415161718192021222324
  1. package com.fjhx.wms.service;
  2. import com.fjhx.wms.entity.purchase.po.PurchaseDetailPo;
  3. import com.fjhx.wms.entity.purchase.po.PurchasePo;
  4. import java.util.Map;
  5. public interface MyPurchaseService {
  6. /**
  7. * 修改采购退货状态
  8. */
  9. void updateSalesReturnStatus(Long id, Integer status);
  10. /**
  11. * 获取采购信息
  12. */
  13. PurchasePo getPurchaseInfo(Long id);
  14. /**
  15. * 获取采购明细
  16. */
  17. Map<Long, PurchaseDetailPo> grtPurchaseDetail(Long id);
  18. }