pan
2025-11-18 6b6c66cd99a4e73eea9bc68c8d7c63fd08180fb9
项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Outbound/OutStockLockInfoController.cs
@@ -1,8 +1,10 @@
锘縰sing Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Org.BouncyCastle.Utilities.Collections;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_Core.Helper;
using WIDESEA_IOutboundService;
using WIDESEA_Model.Models;
@@ -19,5 +21,14 @@
        {
        }
            [HttpGet("getOutStockLockInfo")]
    public async Task<WebResponseContent> GetOutStockLockInfo(string orderDetailId)
        {
            var list = await Service.GetByOrderDetailId(orderDetailId.ObjToInt());
            return WebResponseContent.Instance.OK(null, list);
        }
    }
}