wanshenmean
2026-03-09 45c56eb2641ac2e69c4d1fc37d31e3179edbae67
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
36
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_DTO.Stock;
 
namespace WIDESEA_IStockService
{
    public interface IStockService : IDependency
    {
        IStockInfoDetailService StockInfoDetailService { get; }
 
        IStockInfoService StockInfoService { get; }
 
        IStockInfoDetail_HtyService StockInfoDetail_HtyService { get; }
 
        IStockInfo_HtyService StockInfo_HtyService { get; }
 
        Task<WebResponseContent> GroupPalletAsync(StockDTO stock);
 
        Task<WebResponseContent> ChangePalletAsync(StockDTO stock);
 
        Task<WebResponseContent> SplitPalletAsync(StockDTO stock);
 
        /// <summary>
        /// 堆垛机换盘后更新库存信息(清空库位信息)
        /// </summary>
        /// <param name="stock"></param>
        /// <returns></returns>
        Task<WebResponseContent> UpdateStockInfoAsync(StockInfoDTO stock);
 
    }
}