package com.yanzuoguang.wxxcx.nearbypoi.service; import com.yanzuoguang.wxxcx.base.WxXcxAccessToken; import com.yanzuoguang.wxxcx.nearbypoi.WxXcxNearbyPoiAddReq; import com.yanzuoguang.wxxcx.nearbypoi.WxXcxNearbyPoiAddRes; /** * 添加地点 * * @author 李贤军 */ public interface WxXcxNearbyPoiAddService { /** * 添加地点 * * @param accessToken accessToken * @param req 添加地点 请求 * @return 添加地点 返回 */ WxXcxNearbyPoiAddRes getNearbyPoiAdd(WxXcxAccessToken accessToken, WxXcxNearbyPoiAddReq req); }