pan
2025-11-18 19e538209cb007df7001ca218eb6e1a94ff1db60
项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Outbound/OutboundOrderDetailController.cs
@@ -1,8 +1,11 @@
锘縰sing Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using SqlSugar;
using WIDESEA_Core;
using WIDESEA_Core.Attributes;
using WIDESEA_Core.BaseController;
using WIDESEA_Core.Helper;
using WIDESEA_DTO.Stock;
using WIDESEA_IOutboundService;
using WIDESEA_Model.Models;
@@ -19,6 +22,18 @@
        public OutboundOrderDetailController(IOutboundOrderDetailService service) : base(service)
        {
        }
        //[HttpPost, Route("GetOutboundDetailStockDataById"), AllowAnonymous, MethodParamsValidate]
        //public List<Dt_OutboundOrderDetail> GetOutboundDetailStockDataById (int id)
        //{
        //    return Service.GetOutboundStockDataById(id);
        //}
        public override ActionResult GetPageData(PageDataOptions options)
        {
           return  Json( Service.GetPageData(options));
        }
    }
}