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.
97 lines
2.9 KiB
C#
97 lines
2.9 KiB
C#
2 months ago
|
using DS.Module.Core;
|
||
|
using DS.Module.Core.Data;
|
||
|
using DS.WMS.ContainerManagement.Info.Dtos;
|
||
|
using DS.WMS.ContainerManagement.Info.Entity;
|
||
|
using DS.WMS.ContainerManagement.Info.Interface;
|
||
|
using DS.WMS.Core.Code.Dtos;
|
||
|
using DS.WMS.Core.Op.Dtos;
|
||
|
using DS.WMS.Core.Op.Interface;
|
||
|
using DS.WMS.Core.Op.View;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace DS.WMS.ContainerManagementApi.Controllers;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 批量变动导入 导入模板管理
|
||
|
/// </summary>
|
||
|
public class CM_State_Change_TemplatController : ApiController
|
||
|
{
|
||
|
private readonly ICM_State_Change_TemplatService _invokeService;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 构造函数
|
||
|
/// </summary>
|
||
|
/// <param name="invokeService"></param>
|
||
|
public CM_State_Change_TemplatController(ICM_State_Change_TemplatService invokeService)
|
||
|
{
|
||
|
_invokeService = invokeService;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 列表
|
||
|
/// </summary>
|
||
|
/// <param name="request"></param>
|
||
|
/// <returns></returns>
|
||
|
[HttpPost]
|
||
|
[Route("GetCM_State_Change_TemplatList")]
|
||
|
public async Task<DataResult<List<CM_State_Change_TemplatRes>>> GetCM_State_Change_TemplatList([FromBody] PageRequest request)
|
||
|
{
|
||
|
var res = await _invokeService.GetListByPage(request);
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 直接编辑状态
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
[HttpPost]
|
||
|
[Route("EditCM_State_Change_Templat")]
|
||
|
public Task<DataResult> EditCM_State_Change_Templat([FromBody] CM_State_Change_TemplatReq model)
|
||
|
{
|
||
|
var res = _invokeService.EditCM_State_Change_Templat(model);
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 查看详情
|
||
|
/// </summary>
|
||
|
/// <param name="id"></param>
|
||
|
/// <returns></returns>
|
||
|
[HttpGet]
|
||
|
[Route("GetCM_State_Change_Templat")]
|
||
|
public DataResult<CM_State_Change_TemplatRes> GetCM_State_Change_Templat([FromQuery] string id)
|
||
|
{
|
||
|
var res = _invokeService.GetCM_State_Change_Templat(id);
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 删除
|
||
|
/// </summary>
|
||
|
/// <param name="model">删除</param>
|
||
|
/// <returns></returns>
|
||
|
[HttpPost, Route("DeleteCM_State_Change_Templat")]
|
||
|
public async Task<DataResult> DeleteCM_State_Change_Templat([FromBody] IdModel model)
|
||
|
{
|
||
|
if (!ModelState.IsValid)
|
||
|
return DataResult.Failed(ModelState.GetErrorMessage(), MultiLanguageConst.IllegalRequest);
|
||
|
|
||
|
return await _invokeService.DeleteCM_State_Change_Templat(model.Ids);
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 删除明细
|
||
|
/// </summary>
|
||
|
/// <param name="model">删除</param>
|
||
|
/// <returns></returns>
|
||
|
[HttpPost, Route("DeleteCM_State_Change_TemplatDetail")]
|
||
|
public async Task<DataResult> DeleteCM_State_Change_TemplatDetail([FromBody] IdModel model)
|
||
|
{
|
||
|
if (!ModelState.IsValid)
|
||
|
return DataResult.Failed(ModelState.GetErrorMessage(), MultiLanguageConst.IllegalRequest);
|
||
|
|
||
|
return await _invokeService.DeleteCM_State_Change_TemplatDetail(model.Ids);
|
||
|
}
|
||
|
|
||
|
}
|