using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Mvc;
|
using Org.BouncyCastle.Utilities.Collections;
|
using WIDESEA_Core;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_Core.Helper;
|
using WIDESEA_IOutboundService;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_WMSServer.Controllers.Outbound
|
{
|
/// <summary>
|
/// 出库详情
|
/// </summary>
|
[Route("api/OutStockLockInfo")]
|
[ApiController]
|
public class OutStockLockInfoController : ApiBaseController<IOutStockLockInfoService, Dt_OutStockLockInfo>
|
{
|
public OutStockLockInfoController(IOutStockLockInfoService service) : base(service)
|
{
|
}
|
|
|
[HttpGet("getOutStockLockInfo")]
|
public async Task<WebResponseContent> GetOutStockLockInfo(string orderDetailId)
|
{
|
var list = await Service.GetByOrderDetailId(orderDetailId.ObjToInt());
|
|
return WebResponseContent.Instance.OK(null, list);
|
}
|
|
}
|
}
|