|
@ -3,6 +3,7 @@ using BBWYB.Server.Model.Dto; |
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer; |
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer; |
|
|
using Microsoft.AspNetCore.Authorization; |
|
|
using Microsoft.AspNetCore.Authorization; |
|
|
using Microsoft.AspNetCore.Mvc; |
|
|
using Microsoft.AspNetCore.Mvc; |
|
|
|
|
|
using SDKAdapter.OperationPlatform.Models; |
|
|
|
|
|
|
|
|
namespace BBWYB.Server.API.Controllers |
|
|
namespace BBWYB.Server.API.Controllers |
|
|
{ |
|
|
{ |
|
@ -25,5 +26,16 @@ namespace BBWYB.Server.API.Controllers |
|
|
{ |
|
|
{ |
|
|
return venderBusiness.SaveShopSetting(shopSettingRequest); |
|
|
return venderBusiness.SaveShopSetting(shopSettingRequest); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 查询店铺关联的物流公司列表
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="request"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
[HttpPost] |
|
|
|
|
|
public IList<OP_QueryExpressCompanyResponse> GetExpressCompanyList([FromBody] PlatformRequest request) |
|
|
|
|
|
{ |
|
|
|
|
|
return venderBusiness.GetExpressCompanyList(request); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|