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
827 B
28 lines
827 B
3 years ago
|
using BBWY.Server.Business;
|
||
|
using Microsoft.AspNetCore.Http;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace BBWY.Server.API.Controllers
|
||
|
{
|
||
|
|
||
|
public class AfterSaleOrderSyncController : BaseApiController
|
||
|
{
|
||
|
private AfterSaleOrderSyncBusiness afterSaleOrderSyncBusiness;
|
||
|
|
||
|
public AfterSaleOrderSyncController(IHttpContextAccessor httpContextAccessor,
|
||
|
AfterSaleOrderSyncBusiness afterSaleOrderSyncBusiness) : base(httpContextAccessor)
|
||
|
{
|
||
|
this.afterSaleOrderSyncBusiness = afterSaleOrderSyncBusiness;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 全店同步售后订单
|
||
|
/// </summary>
|
||
|
[HttpPost]
|
||
|
public void SyncAllShopAfterOrder()
|
||
|
{
|
||
|
afterSaleOrderSyncBusiness.SyncAllShopAfterOrder();
|
||
|
}
|
||
|
}
|
||
|
}
|