You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using DS.Module.Core;
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
using DS.WMS.Core.Code.Dtos;
|
|
|
|
using DS.WMS.Core.Code.Interface;
|
|
|
|
using DS.WMS.Core.Op.Dtos;
|
|
|
|
using DS.WMS.Core.Op.Interface;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
namespace DS.WMS.OpApi.Controllers;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 函电信息入货通知服务
|
|
|
|
/// </summary>
|
|
|
|
public class LetterYardController : ApiController
|
|
|
|
{
|
|
|
|
private readonly IOpLetterYardService _invokeService;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 构造函数
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="invokeService"></param>
|
|
|
|
public LetterYardController(IOpLetterYardService invokeService)
|
|
|
|
{
|
|
|
|
_invokeService = invokeService;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 列表
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[HttpPost]
|
|
|
|
[Route("GetOpLetterYardList")]
|
|
|
|
public DataResult<List<OpLetterYardRes>> GetOpLetterYardList([FromBody] PageRequest request)
|
|
|
|
{
|
|
|
|
var res = _invokeService.GetListByPage(request);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 编辑
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="model"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[HttpPost]
|
|
|
|
[Route("EditOpLetterYard")]
|
|
|
|
public DataResult EditOpLetterYard([FromBody] OpLetterYardReq model)
|
|
|
|
{
|
|
|
|
var res = _invokeService.EditOpLetterYard(model);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 详情
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="id"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[HttpGet]
|
|
|
|
[Route("GetOpLetterYardInfo")]
|
|
|
|
public DataResult<OpLetterYardRes> GetOpLetterYardInfo([FromQuery] string id)
|
|
|
|
{
|
|
|
|
var res = _invokeService.GetOpLetterYardInfo(id);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|