You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
854 B
28 lines
854 B
1 year ago
|
using BBWYB.Server.Business;
|
||
|
using BBWYB.Server.Model.Dto;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace BBWYB.Server.API.Controllers
|
||
|
{
|
||
|
|
||
|
public class SkuOptimizationController : BaseApiController
|
||
|
{
|
||
|
private SkuOptimizationBusiness skuOptimizationBusiness;
|
||
|
|
||
|
public SkuOptimizationController(IHttpContextAccessor httpContextAccessor, SkuOptimizationBusiness skuOptimizationBusiness) : base(httpContextAccessor)
|
||
|
{
|
||
|
this.skuOptimizationBusiness = skuOptimizationBusiness;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 良库预警通知
|
||
|
/// </summary>
|
||
|
/// <param name="request"></param>
|
||
|
[HttpPost]
|
||
|
public void LKInventoryAlertNotification([FromBody]LKInventoryAlertRequest request)
|
||
|
{
|
||
|
skuOptimizationBusiness.LKInventoryAlertNotification(request);
|
||
|
}
|
||
|
}
|
||
|
}
|