1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| 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);
|
| }
|
|