diff --git a/BBWYB.Client/APIServices/BaseApiService.cs b/BBWYB.Client/APIServices/BaseApiService.cs
index 2234c1f..747db0f 100644
--- a/BBWYB.Client/APIServices/BaseApiService.cs
+++ b/BBWYB.Client/APIServices/BaseApiService.cs
@@ -1,11 +1,10 @@
-using BBWY.Common.Http;
-using BBWY.Common.Models;
+using BBWYB.Common.Http;
+using BBWYB.Common.Models;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Net.Http;
-using Microsoft.Extensions.Configuration;
-namespace BBWY.Client.APIServices
+namespace BBWYB.Client.APIServices
{
public class BaseApiService
{
diff --git a/BBWYB.Client/APIServices/MdsApiService.cs b/BBWYB.Client/APIServices/MdsApiService.cs
index cbbe17b..11940be 100644
--- a/BBWYB.Client/APIServices/MdsApiService.cs
+++ b/BBWYB.Client/APIServices/MdsApiService.cs
@@ -1,13 +1,13 @@
using BBWYB.Client.Models;
-using BBWY.Common.Http;
-using BBWY.Common.Models;
+using BBWYB.Common.Http;
+using BBWYB.Common.Models;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
-namespace BBWY.Client.APIServices
+namespace BBWYB.Client.APIServices
{
public class MdsApiService : BaseApiService, IDenpendency
{
diff --git a/BBWYB.Client/APIServices/OneBoundAPIService.cs b/BBWYB.Client/APIServices/OneBoundAPIService.cs
deleted file mode 100644
index d88d80f..0000000
--- a/BBWYB.Client/APIServices/OneBoundAPIService.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-using BBWY.Common.Http;
-using BBWY.Common.Models;
-using Newtonsoft.Json.Linq;
-using System;
-using System.Net.Http;
-
-namespace BBWY.Client.APIServices
-{
- public class OneBoundAPIService : IDenpendency
- {
- private RestApiService restApiService;
- private string key = "t5060712539";
- private string secret = "20211103";
-
- public OneBoundAPIService(RestApiService restApiService)
- {
- this.restApiService = restApiService;
- }
-
- ///
- /// 产品详细信息接口
- ///
- /// 1699/jd/taobao 更多值参阅https://open.onebound.cn/help/api/
- ///
- ///
- ///
- ///
- public ApiResponse GetProductInfo(string platform, string productId)
- {
- try
- {
- //https://api-gw.onebound.cn/1688/item_get/key=t5060712539&secret=20211103&num_iid=649560646832&lang=zh-CN&cache=no
- var result = restApiService.SendRequest("https://api-gw.onebound.cn/", $"{platform}/item_get", $"key={key}&secret={secret}&num_iid={productId}&lang=zh-CN&cache=no", null, HttpMethod.Get, paramPosition: ParamPosition.Query, enableRandomTimeStamp: true);
- if (result.StatusCode != System.Net.HttpStatusCode.OK)
- throw new Exception($"{result.StatusCode} {result.Content}");
-
- var j = JObject.Parse(result.Content);
- return new ApiResponse()
- {
- Data = j,
- Code = j.Value("error_code") == "0000" ? 200 : 0,
- Msg = j.Value("error")
- };
- }
- catch (Exception ex)
- {
- return ApiResponse.Error(0, ex.Message);
- }
- }
- }
-}
diff --git a/BBWYB.Client/APIServices/ProductService.cs b/BBWYB.Client/APIServices/ProductService.cs
index 9bcb591..0de5eb7 100644
--- a/BBWYB.Client/APIServices/ProductService.cs
+++ b/BBWYB.Client/APIServices/ProductService.cs
@@ -1,10 +1,10 @@
using BBWYB.Client.Models;
-using BBWY.Common.Http;
-using BBWY.Common.Models;
+using BBWYB.Common.Http;
+using BBWYB.Common.Models;
using System.Collections.Generic;
using System.Net.Http;
-namespace BBWY.Client.APIServices
+namespace BBWYB.Client.APIServices
{
public class ProductService : BaseApiService, IDenpendency
{
diff --git a/BBWYB.Client/APIServices/PurchaseOrderService.cs b/BBWYB.Client/APIServices/PurchaseOrderService.cs
deleted file mode 100644
index 7ba0ffa..0000000
--- a/BBWYB.Client/APIServices/PurchaseOrderService.cs
+++ /dev/null
@@ -1,166 +0,0 @@
-using BBWYB.Client.Models;
-using BBWY.Common.Http;
-using BBWY.Common.Models;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Net.Http;
-
-namespace BBWY.Client.APIServices
-{
- public class PurchaseOrderService : BaseApiService, IDenpendency
- {
- public PurchaseOrderService(RestApiService restApiService, GlobalContext globalContext) : base(restApiService, globalContext)
- {
-
- }
-
- public ApiResponse