pan
2025-11-08 46b1d8e9148eb1b6d0a890348f32b008ed52fe74
项目代码/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);
        }
    }
}