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
600 B

using BBWYB.Server.Business.JD;
using Microsoft.AspNetCore.Mvc;
namespace BBWYB.Server.API.Controllers
{
public class JDController : BaseApiController
{
private JDBusiness jdBusiness;
public JDController(IHttpContextAccessor httpContextAccessor, JDBusiness jdBusiness) : base(httpContextAccessor)
{
this.jdBusiness = jdBusiness;
}
/// <summary>
/// 检查入仓采购单
/// </summary>
[HttpPost]
public void CheckInStoreOrder()
{
jdBusiness.CheckInStoreOrder();
}
}
}