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.
27 lines
746 B
27 lines
746 B
3 years ago
|
using BBWY.Server.Business;
|
||
|
using Microsoft.AspNetCore.Http;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace BBWY.Server.API.Controllers
|
||
|
{
|
||
|
|
||
|
public class RefundOrderSyncController : BaseApiController
|
||
|
{
|
||
|
private RefundOrderSyncBusiness refundOrderSyncBusiness;
|
||
|
|
||
|
public RefundOrderSyncController(RefundOrderSyncBusiness refundOrderSyncBusiness, IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor)
|
||
|
{
|
||
|
this.refundOrderSyncBusiness = refundOrderSyncBusiness;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 退款同步
|
||
|
/// </summary>
|
||
|
[HttpPost]
|
||
|
public void SyncAllShopRefundOrder()
|
||
|
{
|
||
|
refundOrderSyncBusiness.SyncAllShopRefundOrder();
|
||
|
}
|
||
|
}
|
||
|
}
|