Files
sy_hx_pbl_backend/DOAN.Admin.WebApi/Controllers/PBL/InventorylogController.cs
qianhao.xu e970123827 init
2024-09-23 11:54:56 +08:00

102 lines
3.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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));
}
}
}