IWmspInventoryCloseService.java 423 B

123456789101112131415161718192021222324
  1. package com.steerinfo.dil.service;
  2. import java.util.List;
  3. import java.util.Map;
  4. /**
  5. * @author luobang
  6. * @create 2021-09-08 14:41
  7. */
  8. public interface IWmspInventoryCloseService {
  9. /**
  10. * 1.展示库存结转基本信息
  11. * @param mapValue
  12. * @return
  13. */
  14. public List<Map<String, Object>> getWmspInventoryClose(Map<String, Object> mapValue);
  15. int addInventoryClose();
  16. int getClose();
  17. }