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.
93 lines
2.5 KiB
C#
93 lines
2.5 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.Map.Dtos;
|
|
using DS.WMS.Core.Map.Interface;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace DS.WMS.MainApi.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 箱型映射信息 模块
|
|
/// </summary>
|
|
public class MappingCtnController : ApiController
|
|
{
|
|
private readonly IMappingCtnService _invokeService;
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="invokeService"></param>
|
|
public MappingCtnController(IMappingCtnService invokeService)
|
|
{
|
|
_invokeService = invokeService;
|
|
}
|
|
/// <summary>
|
|
/// 列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("GetMappingCtnList")]
|
|
public DataResult<List<MappingCtnRes>> GetMappingCtnList([FromBody] PageRequest request)
|
|
{
|
|
var res = _invokeService.GetListByPage(request);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 编辑
|
|
/// </summary>
|
|
/// <param name="req"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("EditMappingCtn")]
|
|
public DataResult EditMappingCtn([FromBody] MappingCtnReq req)
|
|
{
|
|
var res = _invokeService.EditMappingCtn(req);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 详情
|
|
/// </summary>
|
|
/// <param name="id">Id</param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
[Route("GetMappingCtnInfo")]
|
|
public DataResult<MappingCtnRes> GetMappingCtnInfo([FromQuery] string id)
|
|
{
|
|
var res = _invokeService.GetMappingCtnInfo(id);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
/// <param name="req">Id</param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("DelMappingCtn")]
|
|
public DataResult DelMappingCtn([FromBody] IdModel req)
|
|
{
|
|
var res = _invokeService.DelMappingCtn(req);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
///批量删除
|
|
/// </summary>
|
|
/// <param name="req">Id</param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("BatchDelMappingCtn")]
|
|
public DataResult BatchDelMappingCtn([FromBody] IdModel req)
|
|
{
|
|
var res = _invokeService.BatchDelMappingCtn(req);
|
|
return res;
|
|
}
|
|
}
|
|
}
|