using WIDESEA_DTO.Basic; using WIDESEA_DTO.Stock; namespace WIDESEA_IStorageBasicService; public interface IStockInfoService : IService { /// /// 根据物料编码获取库存可用量视图 /// /// /// List GetStockSelectViews(string materielCode); /// /// 组盘 /// /// /// Task AddGroupPlateAsync(GroupPlate groupPlate); /// /// 解盘 /// /// /// Task DeleteGroupPlateAsync(GroupPlate groupPlate); /// /// 根据请求出库任务 /// /// /// WebResponseContent GenerateOutboundTask(GenerateOutTaskDto requestOut); }