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.6 KiB
C#
93 lines
2.6 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 MappingPackageController : ApiController
|
|
{
|
|
private readonly IMappingPackageService _invokeService;
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="invokeService"></param>
|
|
public MappingPackageController(IMappingPackageService invokeService)
|
|
{
|
|
_invokeService = invokeService;
|
|
}
|
|
/// <summary>
|
|
/// 列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("GetMappingPackageList")]
|
|
public DataResult<List<MappingPackageRes>> GetMappingPackageList([FromBody] PageRequest request)
|
|
{
|
|
var res = _invokeService.GetListByPage(request);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 编辑
|
|
/// </summary>
|
|
/// <param name="req"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("EditMappingPackage")]
|
|
public DataResult EditMappingPackage([FromBody] MappingPackageReq req)
|
|
{
|
|
var res = _invokeService.EditMappingPackage(req);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 详情
|
|
/// </summary>
|
|
/// <param name="id">Id</param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
[Route("GetMappingPackageInfo")]
|
|
public DataResult<MappingPackageRes> GetMappingPackageInfo([FromQuery] string id)
|
|
{
|
|
var res = _invokeService.GetMappingPackageInfo(id);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
/// <param name="req">Id</param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("DelMappingPackage")]
|
|
public DataResult DelMappingPackage([FromBody] IdModel req)
|
|
{
|
|
var res = _invokeService.DelMappingPackage(req);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
///批量删除
|
|
/// </summary>
|
|
/// <param name="req">Id</param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("BatchDelMappingPackage")]
|
|
public DataResult BatchDelMappingPackage([FromBody] IdModel req)
|
|
{
|
|
var res = _invokeService.BatchDelMappingPackage(req);
|
|
return res;
|
|
}
|
|
}
|
|
}
|