|
@ -1,4 +1,5 @@ |
|
|
using BBWYB.Server.Business; |
|
|
using BBWYB.Server.Business; |
|
|
|
|
|
using BBWYB.Server.Model.Db.MDS; |
|
|
using BBWYB.Server.Model.Dto; |
|
|
using BBWYB.Server.Model.Dto; |
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer; |
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer; |
|
|
using Microsoft.AspNetCore.Authorization; |
|
|
using Microsoft.AspNetCore.Authorization; |
|
@ -27,6 +28,18 @@ namespace BBWYB.Server.API.Controllers |
|
|
return venderBusiness.SaveShopSetting(shopSettingRequest); |
|
|
return venderBusiness.SaveShopSetting(shopSettingRequest); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取店铺下的采购账号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="shopId"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
[HttpGet] |
|
|
|
|
|
public IList<Purchaseaccount> GetPurchaserListByShopId([FromBody]long shopId) |
|
|
|
|
|
{ |
|
|
|
|
|
return venderBusiness.GetPurchaserListByShopId(shopId); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 查询店铺关联的物流公司列表
|
|
|
/// 查询店铺关联的物流公司列表
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|