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.
20 lines
457 B
20 lines
457 B
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BBWY.Server.API.Controllers
|
|
{
|
|
|
|
public class ServiceOrderSyncController : BaseApiController
|
|
{
|
|
public ServiceOrderSyncController(IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor)
|
|
{
|
|
}
|
|
|
|
[Consumes("application/x-www-form-urlencoded")]
|
|
[HttpPost]
|
|
public void KuaiDi100Callback()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|