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.
68 lines
1.7 KiB
C#
68 lines
1.7 KiB
C#
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>
|
|
[Obsolete]
|
|
public class LetterChangeController : ApiController
|
|
{
|
|
private readonly IOpLetterChangeService _invokeService;
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="invokeService"></param>
|
|
public LetterChangeController(IOpLetterChangeService invokeService)
|
|
{
|
|
_invokeService = invokeService;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("GetOpLetterChangeList")]
|
|
public DataResult<List<OpLetterChangeRes>> GetOpLetterChangeList([FromBody] PageRequest request)
|
|
{
|
|
var res = _invokeService.GetListByPage(request);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 编辑
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("EditOpLetterChange")]
|
|
public DataResult EditOpLetterChange([FromBody] OpLetterChangeReq model)
|
|
{
|
|
var res = _invokeService.EditOpLetterChange(model);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 详情
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
[Route("GetOpLetterChangeInfo")]
|
|
public DataResult<OpLetterChangeRes> GetOpLetterChangeInfo([FromQuery] string id)
|
|
{
|
|
var res = _invokeService.GetOpLetterChangeInfo(id);
|
|
return res;
|
|
}
|
|
|
|
|
|
} |