123456789101112131415161718192021222324 |
- package com.steerinfo.dil.service;
- import java.util.List;
- import java.util.Map;
- /**
- * @author luobang
- * @create 2021-09-08 14:41
- */
- public interface IWmspInventoryCloseService {
- /**
- * 1.展示库存结转基本信息
- * @param mapValue
- * @return
- */
- public List<Map<String, Object>> getWmspInventoryClose(Map<String, Object> mapValue);
- int addInventoryClose();
- int getClose();
- }
|