3 changed files with 68 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||
using BBWYB.Common.Http; |
|||
using BBWYB.Common.Models; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace BBWYB.Client.APIServices |
|||
{ |
|||
public class TestApiService : BaseApiService, IDenpendency |
|||
{ |
|||
public TestApiService(RestApiService restApiService, GlobalContext globalContext) : base(restApiService, globalContext) |
|||
{ |
|||
} |
|||
|
|||
public ApiResponse<object> BatchManualSign() |
|||
{ |
|||
return SendRequest<object>(globalContext.BBWYApiHost, "Api/PurchaseOrder/BatchManualSign", new |
|||
{ |
|||
wayBillNoList = new string[] { "ceshi123456" } |
|||
}, null, System.Net.Http.HttpMethod.Post); |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue