wanshenmean
2026-03-30 2d27e688d33998d2244b1b9cc04b942d88c0d4bf
feat(IStockInfoService): 新增 Get3DLayoutAsync 方法签名

为库存信息服务接口添加获取仓库3D布局数据的方法。

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
已修改1个文件
8 ■■■■■ 文件已修改
Code/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/IStockInfoService.cs 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code/WMS/WIDESEA_WMSServer/WIDESEA_IStockService/IStockInfoService.cs
@@ -1,5 +1,6 @@
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_DTO.Stock;
using WIDESEA_Model.Models;
namespace WIDESEA_IStockService
@@ -48,5 +49,12 @@
        /// <param name="locationCode">货位编码</param>
        /// <returns>库存信息</returns>
        Task<Dt_StockInfo> GetStockInfoAsync(string palletCode, string locationCode);
        /// <summary>
        /// 获取仓库3D布局数据
        /// </summary>
        /// <param name="warehouseId">仓库ID</param>
        /// <returns>3D布局DTO</returns>
        Task<Stock3DLayoutDTO> Get3DLayoutAsync(int warehouseId);
    }
}