| 对比新文件 |
| | |
| | | 锘縰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(); |
| | | } |
| | | } |
| | | } |