huangxiaoqiang
2025-10-27 387731cab892804912e68cb91e6fb804411c4756
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using WIDESEA_DTO.Basic;
using WIDESEA_DTO.Stock;
 
namespace WIDESEA_IStorageBasicService;
 
public interface IStockInfoService : IService<DtStockInfo>
{
    /// <summary>
    /// 库存视图
    /// </summary>
    /// <param name="viewDto"></param>
    /// <returns></returns>
    List<StockSelectViewDTO> GetStockSelectViews(GetStockSelectViewDto viewDto);
 
 
    List<DtLocationInfo> GetStockLocations(List<DtLocationInfo>? locations);
 
    /// <summary>
    /// 组盘
    /// </summary>
    /// <param name="groupPlate"></param>
    /// <returns></returns>
    Task<WebResponseContent> AddGroupPlateAsync(GroupPlate groupPlate);
 
    /// <summary>
    /// 解盘
    /// </summary>
    /// <param name="groupPlate"></param>
    /// <returns></returns>
    Task<WebResponseContent> DeleteGroupPlateAsync(GroupPlate groupPlate);
 
 
    WebResponseContent GetStockView(GetStockSelectViewDto viewDto);
 
}