wanshenmean
2026-03-09 b25f84acd529775efe1d43cbcad0142e19ba2182
Code/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/IStockService.cs
@@ -1,9 +1,11 @@
using System;
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
{
@@ -16,5 +18,19 @@
        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);
    }
}