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.
|
|
|
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] BatchLKInventoryAlertRequest request)
|
|
|
|
{
|
|
|
|
skuOptimizationBusiness.LKInventoryAlertNotification(request);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|