liulijun
2025-11-24 9086b238cd9fbb9fbeae7cab11d59576cd9d2853
项目代码/WMS/WMSServices/WIDESEA_WMSServer/Controllers/Outbound/OutLineViewController.cs
对比新文件
@@ -0,0 +1,30 @@
锘縰sing Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_IOutboundService;
using WIDESEA_Model.Models;
namespace WIDESEA_WMSServer.Controllers.Outbound
{
    /// <summary>
    /// 鍑哄簱绾夸綋缂撳瓨
    /// </summary>
    [Route("api/OutLineView")]
    [ApiController]
    public class OutLineViewController : ApiBaseController<IOutLineViewService, Dt_OutLineView>
    {
        public OutLineViewController(IOutLineViewService service) : base(service)
        {
        }
        /// <summary>
        /// 鑾峰彇绾夸綋鍘熺焊
        /// </summary>
        /// <returns></returns>
        [HttpPost, HttpGet, Route("GetOutLineView"), AllowAnonymous]
        public WebResponseContent GetOutLineView()
        {
            return Service.GetOutLineView();
        }
    }
}