All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.mp.api.impl.WxMpWifiServiceImpl Maven / Gradle / Ivy

There is a newer version: 4.6.9.B
Show newest version
package me.chanjar.weixin.mp.api.impl;

import com.google.gson.JsonObject;
import lombok.RequiredArgsConstructor;
import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.mp.api.WxMpService;
import me.chanjar.weixin.mp.api.WxMpWifiService;
import me.chanjar.weixin.mp.bean.wifi.WxMpWifiShopDataResult;
import me.chanjar.weixin.mp.bean.wifi.WxMpWifiShopListResult;

import static me.chanjar.weixin.mp.enums.WxMpApiUrl.Wifi.*;

/**
 * 
 *  Created by BinaryWang on 2018/6/10.
 * 
* * @author Binary Wang */ @RequiredArgsConstructor public class WxMpWifiServiceImpl implements WxMpWifiService { private final WxMpService wxMpService; @Override public WxMpWifiShopListResult listShop(int pageIndex, int pageSize) throws WxErrorException { JsonObject json = new JsonObject(); json.addProperty("pageindex", pageIndex); json.addProperty("pagesize", pageSize); final String result = this.wxMpService.post(BIZWIFI_SHOP_LIST, json.toString()); return WxMpWifiShopListResult.fromJson(result); } @Override public WxMpWifiShopDataResult getShopWifiInfo(int shopId) throws WxErrorException { JsonObject json = new JsonObject(); json.addProperty("shop_id", shopId); return WxMpWifiShopDataResult.fromJson(this.wxMpService.post(BIZWIFI_SHOP_GET, json.toString())); } @Override public boolean updateShopWifiInfo(int shopId, String oldSsid, String ssid, String password) throws WxErrorException { JsonObject json = new JsonObject(); json.addProperty("shop_id", shopId); json.addProperty("old_ssid", oldSsid); json.addProperty("ssid", ssid); if (password != null) { json.addProperty("password", password); } try { this.wxMpService.post(BIZWIFI_SHOP_UPDATE, json.toString()); return true; } catch (WxErrorException e) { throw e; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy