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.
25 lines
754 B
25 lines
754 B
using BBWY.Server.Business;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BBWY.Server.API.Controllers
|
|
{
|
|
public class JDStockNumWarningController : BaseApiController
|
|
{
|
|
private JDStockNumWarningBusiness jDStockNumWarningBusiness;
|
|
|
|
public JDStockNumWarningController(IHttpContextAccessor httpContextAccessor, JDStockNumWarningBusiness jDStockNumWarningBusiness) : base(httpContextAccessor)
|
|
{
|
|
this.jDStockNumWarningBusiness = jDStockNumWarningBusiness;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 检查库存
|
|
/// </summary>
|
|
[HttpGet]
|
|
public void StartCheckStockNum()
|
|
{
|
|
jDStockNumWarningBusiness.StartCheckStockNum();
|
|
}
|
|
}
|
|
}
|
|
|