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 BatchManualSign() { return SendRequest(globalContext.BBWYApiHost, "Api/PurchaseOrder/BatchManualSign", new { wayBillNoList = new string[] { "ceshi123456" } }, null, System.Net.Http.HttpMethod.Post); } } }