This commit is contained in:
qianhao.xu
2024-09-23 11:54:56 +08:00
parent a7f14f1e3e
commit e970123827
15 changed files with 946 additions and 0 deletions

View File

@@ -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.Business
{
/// <summary>
/// 物料清单
/// </summary>
[Verify]
[Route("PBL/Billofmaterials")]
public class BillofmaterialsController : BaseController
{
/// <summary>
/// 物料清单接口
/// </summary>
private readonly IBillofmaterialsService _BillofmaterialsService;
public BillofmaterialsController(IBillofmaterialsService BillofmaterialsService)
{
_BillofmaterialsService = BillofmaterialsService;
}
/// <summary>
/// 查询物料清单列表
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
[HttpGet("list")]
[ActionPermissionFilter(Permission = "billofmaterials:list")]
public IActionResult QueryBillofmaterials([FromQuery] BillofmaterialsQueryDto parm)
{
var response = _BillofmaterialsService.GetList(parm);
return SUCCESS(response);
}
/// <summary>
/// 查询物料清单详情
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
[HttpGet("{Id}")]
[ActionPermissionFilter(Permission = "billofmaterials:query")]
public IActionResult GetBillofmaterials(int Id)
{
var response = _BillofmaterialsService.GetInfo(Id);
var info = response.Adapt<BillofmaterialsDto>();
return SUCCESS(info);
}
/// <summary>
/// 添加物料清单
/// </summary>
/// <returns></returns>
[HttpPost]
[ActionPermissionFilter(Permission = "billofmaterials:add")]
[Log(Title = "物料清单", BusinessType = BusinessType.INSERT)]
public IActionResult AddBillofmaterials([FromBody] BillofmaterialsDto parm)
{
var modal = parm.Adapt<Billofmaterials>().ToCreate(HttpContext);
var response = _BillofmaterialsService.AddBillofmaterials(modal);
return SUCCESS(response);
}
/// <summary>
/// 更新物料清单
/// </summary>
/// <returns></returns>
[HttpPut]
[ActionPermissionFilter(Permission = "billofmaterials:edit")]
[Log(Title = "物料清单", BusinessType = BusinessType.UPDATE)]
public IActionResult UpdateBillofmaterials([FromBody] BillofmaterialsDto parm)
{
var modal = parm.Adapt<Billofmaterials>().ToUpdate(HttpContext);
var response = _BillofmaterialsService.UpdateBillofmaterials(modal);
return ToResponse(response);
}
/// <summary>
/// 删除物料清单
/// </summary>
/// <returns></returns>
[HttpPost("delete/{ids}")]
[ActionPermissionFilter(Permission = "billofmaterials:delete")]
[Log(Title = "物料清单", BusinessType = BusinessType.DELETE)]
public IActionResult DeleteBillofmaterials([FromRoute]string ids)
{
var idArr = Tools.SplitAndConvert<int>(ids);
return ToResponse(_BillofmaterialsService.Delete(idArr));
}
}
}

View File

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

View File

@@ -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.Business
{
/// <summary>
/// 料架表
/// </summary>
[Verify]
[Route("PBL/Storagelocation")]
public class StoragelocationController : BaseController
{
/// <summary>
/// 料架表接口
/// </summary>
private readonly IStoragelocationService _StoragelocationService;
public StoragelocationController(IStoragelocationService StoragelocationService)
{
_StoragelocationService = StoragelocationService;
}
/// <summary>
/// 查询料架表列表
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
[HttpGet("list")]
[ActionPermissionFilter(Permission = "storagelocation:list")]
public IActionResult QueryStoragelocation([FromQuery] StoragelocationQueryDto parm)
{
var response = _StoragelocationService.GetList(parm);
return SUCCESS(response);
}
/// <summary>
/// 查询料架表详情
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
[HttpGet("{Id}")]
[ActionPermissionFilter(Permission = "storagelocation:query")]
public IActionResult GetStoragelocation(int Id)
{
var response = _StoragelocationService.GetInfo(Id);
var info = response.Adapt<StoragelocationDto>();
return SUCCESS(info);
}
/// <summary>
/// 添加料架表
/// </summary>
/// <returns></returns>
[HttpPost]
[ActionPermissionFilter(Permission = "storagelocation:add")]
[Log(Title = "料架表", BusinessType = BusinessType.INSERT)]
public IActionResult AddStoragelocation([FromBody] StoragelocationDto parm)
{
var modal = parm.Adapt<Storagelocation>().ToCreate(HttpContext);
var response = _StoragelocationService.AddStoragelocation(modal);
return SUCCESS(response);
}
/// <summary>
/// 更新料架表
/// </summary>
/// <returns></returns>
[HttpPut]
[ActionPermissionFilter(Permission = "storagelocation:edit")]
[Log(Title = "料架表", BusinessType = BusinessType.UPDATE)]
public IActionResult UpdateStoragelocation([FromBody] StoragelocationDto parm)
{
var modal = parm.Adapt<Storagelocation>().ToUpdate(HttpContext);
var response = _StoragelocationService.UpdateStoragelocation(modal);
return ToResponse(response);
}
/// <summary>
/// 删除料架表
/// </summary>
/// <returns></returns>
[HttpPost("delete/{ids}")]
[ActionPermissionFilter(Permission = "storagelocation:delete")]
[Log(Title = "料架表", BusinessType = BusinessType.DELETE)]
public IActionResult DeleteStoragelocation([FromRoute]string ids)
{
var idArr = Tools.SplitAndConvert<int>(ids);
return ToResponse(_StoragelocationService.Delete(idArr));
}
}
}