using WIDESEA_DTO.Basic; using WIDESEA_DTO.Stock; namespace WIDESEA_IStorageBasicService; public interface IStockInfoService : IService { /// /// 库存视图 /// /// /// List GetStockSelectViews(GetStockSelectViewDto viewDto); List GetStockLocations(List? locations); /// /// 组盘 /// /// /// Task AddGroupPlateAsync(GroupPlate groupPlate); /// /// 解盘 /// /// /// Task DeleteGroupPlateAsync(GroupPlate groupPlate); WebResponseContent GetStockView(GetStockSelectViewDto viewDto); }