diff --git a/BBWYB.Server.API/Controllers/VenderController.cs b/BBWYB.Server.API/Controllers/VenderController.cs index 6b101ca..42b492c 100644 --- a/BBWYB.Server.API/Controllers/VenderController.cs +++ b/BBWYB.Server.API/Controllers/VenderController.cs @@ -3,6 +3,7 @@ using BBWYB.Server.Model.Dto; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; +using SDKAdapter.OperationPlatform.Models; namespace BBWYB.Server.API.Controllers { @@ -25,5 +26,16 @@ namespace BBWYB.Server.API.Controllers { return venderBusiness.SaveShopSetting(shopSettingRequest); } + + /// + /// 查询店铺关联的物流公司列表 + /// + /// + /// + [HttpPost] + public IList GetExpressCompanyList([FromBody] PlatformRequest request) + { + return venderBusiness.GetExpressCompanyList(request); + } } }