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>
|
public WebResponseContent GetOutLineView()
|
{
|
return Service.GetOutLineView();
|
}
|
}
|
}
|