修正
This commit is contained in:
@@ -0,0 +1,102 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using DOAN.Model.PBL.Dto;
|
||||
using DOAN.Model.PBL;
|
||||
using DOAN.Service.PBL.IService;
|
||||
using DOAN.Admin.WebApi.Filters;
|
||||
|
||||
//创建时间:2024-09-23
|
||||
namespace DOAN.Admin.WebApi.Controllers.PBL
|
||||
{
|
||||
/// <summary>
|
||||
/// 库存日志
|
||||
/// </summary>
|
||||
[Verify]
|
||||
[Route("PBL/Inventorylog")]
|
||||
public class InventorylogController : BaseController
|
||||
{
|
||||
/// <summary>
|
||||
/// 库存日志接口
|
||||
/// </summary>
|
||||
private readonly IInventorylogService _InventorylogService;
|
||||
|
||||
public InventorylogController(IInventorylogService InventorylogService)
|
||||
{
|
||||
_InventorylogService = InventorylogService;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 查询库存日志列表
|
||||
/// </summary>
|
||||
/// <param name="parm"></param>
|
||||
/// <returns></returns>
|
||||
[HttpGet("list")]
|
||||
[ActionPermissionFilter(Permission = "inventorylog:list")]
|
||||
public IActionResult QueryInventorylog([FromQuery] InventorylogQueryDto parm)
|
||||
{
|
||||
var response = _InventorylogService.GetList(parm);
|
||||
return SUCCESS(response);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 查询库存日志详情
|
||||
/// </summary>
|
||||
/// <param name="Id"></param>
|
||||
/// <returns></returns>
|
||||
[HttpGet("{Id}")]
|
||||
[ActionPermissionFilter(Permission = "inventorylog:query")]
|
||||
public IActionResult GetInventorylog(string Id)
|
||||
{
|
||||
var response = _InventorylogService.GetInfo(Id);
|
||||
|
||||
var info = response.Adapt<InventorylogDto>();
|
||||
return SUCCESS(info);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 添加库存日志
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[HttpPost]
|
||||
[ActionPermissionFilter(Permission = "inventorylog:add")]
|
||||
[Log(Title = "库存日志", BusinessType = BusinessType.INSERT)]
|
||||
public IActionResult AddInventorylog([FromBody] InventorylogDto parm)
|
||||
{
|
||||
var modal = parm.Adapt<Inventorylog>().ToCreate(HttpContext);
|
||||
|
||||
var response = _InventorylogService.AddInventorylog(modal);
|
||||
|
||||
return SUCCESS(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 更新库存日志
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[HttpPut]
|
||||
[ActionPermissionFilter(Permission = "inventorylog:edit")]
|
||||
[Log(Title = "库存日志", BusinessType = BusinessType.UPDATE)]
|
||||
public IActionResult UpdateInventorylog([FromBody] InventorylogDto parm)
|
||||
{
|
||||
var modal = parm.Adapt<Inventorylog>().ToUpdate(HttpContext);
|
||||
var response = _InventorylogService.UpdateInventorylog(modal);
|
||||
|
||||
return ToResponse(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 删除库存日志
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[HttpPost("delete/{ids}")]
|
||||
[ActionPermissionFilter(Permission = "inventorylog:delete")]
|
||||
[Log(Title = "库存日志", BusinessType = BusinessType.DELETE)]
|
||||
public IActionResult DeleteInventorylog([FromRoute]string ids)
|
||||
{
|
||||
var idArr = Tools.SplitAndConvert<string>(ids);
|
||||
|
||||
return ToResponse(_InventorylogService.Delete(idArr));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user