using 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();
|
}
|
}
|
}
|