huangxiaoqiang
2025-11-17 b07472f884708a6bfdf63d999004bbf0bb5f00a8
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
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);
 
 
    WebResponseContent GetStockView(GetStockSelectViewDto viewDto);
 
 
    Task<WebResponseContent> GetStockData();
 
    Task<WebResponseContent> PrintOrder(object[] key);
 
}