using QYMessageCenter.Client.Models; using QYMessageCenter.Common.Http; using QYMessageCenter.Common.Models; using System.Net.Http; namespace QYMessageCenter.Client.APIServices { public class ShopService : BaseApiService { private string bbwyhost = "http://bbwytest.qiyue666.com"; public ShopService(RestApiService restApiService, GlobalContext globalContext) : base(restApiService, globalContext) { } /// /// 获取部门及下属店铺 /// /// public ApiResponse> GetDepartmentList() { return SendRequest>(bbwyhost, "api/vender/GetDeparmentList", null, new Dictionary() { { "bbwyTempKey", "21jfhayu27q" } }, HttpMethod.Get); } } }