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.
81 lines
2.3 KiB
C#
81 lines
2.3 KiB
C#
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_SellCtn_DetailController : ApiController
|
|
{
|
|
private readonly ICM_SellCtn_DetailService _invokeService;
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="invokeService"></param>
|
|
public CM_SellCtn_DetailController(ICM_SellCtn_DetailService invokeService)
|
|
{
|
|
_invokeService = invokeService;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("GetCM_SellCtn_DetailList")]
|
|
public async Task<DataResult<List<CM_SellCtn_DetailRes>>> GetCM_SellCtn_DetailList([FromBody] PageRequest request)
|
|
{
|
|
var res = await _invokeService.GetListByPage(request);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 直接编辑
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
//[HttpPost]
|
|
//[Route("EditCM_SellCtn_Detail")]
|
|
//public DataResult EditCM_SellCtn_Detail([FromBody] CM_SellCtn_DetailReq model)
|
|
//{
|
|
// var res = _invokeService.EditCM_SellCtn_Detail(model);
|
|
// return res;
|
|
//}
|
|
|
|
///// <summary>
|
|
///// 查看卖箱明细详情
|
|
///// </summary>
|
|
///// <param name="id"></param>
|
|
///// <returns></returns>
|
|
//[HttpGet]
|
|
//[Route("GetCM_SellCtn_Detail")]
|
|
//public DataResult<CM_SellCtn_DetailRes> GetCM_SellCtn_Detail([FromQuery] string id)
|
|
//{
|
|
// var res = _invokeService.GetCM_SellCtn_Detail(id);
|
|
// return res;
|
|
//}
|
|
|
|
/// <summary>
|
|
/// 删除卖箱
|
|
/// </summary>
|
|
/// <param name="model">删除卖箱</param>
|
|
/// <returns></returns>
|
|
[HttpPost, Route("DeleteCM_SellCtn_Detail")]
|
|
public async Task<DataResult> DeleteCM_SellCtn_DetailAsync([FromBody] IdModel model)
|
|
{
|
|
if (!ModelState.IsValid)
|
|
return DataResult.Failed(ModelState.GetErrorMessage(), MultiLanguageConst.IllegalRequest);
|
|
|
|
return await _invokeService.DeleteCM_SellCtn_DetailAsync(model.Ids);
|
|
}
|
|
} |