首次提交

This commit is contained in:
2025-09-29 08:52:07 +08:00
commit 6379786d0b
109 changed files with 15030 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
package com.android.nebulasdk.api;
import java.util.Map;
import okhttp3.RequestBody;
import retrofit2.Call;
import retrofit2.http.Body;
import retrofit2.http.GET;
import retrofit2.http.HeaderMap;
import retrofit2.http.Headers;
import retrofit2.http.POST;
/**
* Created by Administrator on 2018/6/9 0009.
*/
public interface ServerApi {
//获取域名分发
@Headers({"Content-type:application/json;charset=UTF-8"})
@POST(ServerInterface.POST_SERVER_APP_UPDATE)
Call<String> postServerAppUpdate(@HeaderMap Map<String,String> headeMap,@Body RequestBody requestBody);
//获取服务器时间戳
@GET(ServerInterface.GET_SERVER_TIME)
Call<String> getServerTime();
}