package org.dromara.util; import com.dtflys.forest.annotation.Post; import com.dtflys.forest.annotation.Query; import java.util.Map; public interface YingshiHttp { @Post("https://open.ys7.com/api/lapp/token/get") Map getAccessToken(@Query("appKey") String accessKey, @Query("appSecret") String secretKey); @Post("https://open.ys7.com/api/lapp/v2/live/address/get") Map getLiveAddress(@Query("accessToken") String accessToken, @Query("deviceSerial") String deviceSerial); }