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.WMS.Core.Code.Dtos;
|
|
|
|
using DS.WMS.Core.Code.Interface;
|
|
|
|
using DS.WMS.Core.Sys.Dtos;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
namespace DS.WMS.AdminApi.Controllers;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 运输条款服务
|
|
|
|
/// </summary>
|
|
|
|
public class CodeServiceController : ApiController
|
|
|
|
{
|
|
|
|
private readonly ICodeServiceService _invokeService;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 构造函数
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="invokeService"></param>
|
|
|
|
public CodeServiceController(ICodeServiceService invokeService)
|
|
|
|
{
|
|
|
|
_invokeService = invokeService;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 列表
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[HttpPost]
|
|
|
|
[Route("GetCodeServiceList")]
|
|
|
|
public DataResult<List<CodeServiceRes>> GetCodeServiceList([FromBody] PageRequest request)
|
|
|
|
{
|
|
|
|
var res = _invokeService.GetListByPage(request);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 编辑
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="model"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[HttpPost]
|
|
|
|
[Route("EditCodeService")]
|
|
|
|
public DataResult EditCodeService([FromBody] CodeServiceReq model)
|
|
|
|
{
|
|
|
|
var res = _invokeService.EditCodeService(model);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 详情
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="id"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[HttpGet]
|
|
|
|
[Route("GetCodeServiceInfo")]
|
|
|
|
public DataResult<CodeServiceRes> GetCodeServiceInfo([FromQuery] string id)
|
|
|
|
{
|
|
|
|
var res = _invokeService.GetCodeServiceInfo(id);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|