1
heshaofeng
2025-11-08 0b87b08ef12e2293cf073f75f7ee73b9423686fa
项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Stock/StockInfoDetailController.cs
@@ -1,6 +1,8 @@
锘縰sing Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_DTO.Stock;
using WIDESEA_IStockService;
using WIDESEA_Model.Models;
@@ -16,5 +18,15 @@
        public StockInfoDetailController(IStockInfoDetailService service) : base(service)
        {
        }
        [HttpPost, Route("GetPageData")]
        public override ActionResult GetPageData([FromBody] PageDataOptions options)
        {
            var result = Service.GetPageData2(options);
            return Json(result);
        }
    }
}