riku
2025-10-17 fbae5f3ea74727ccadc48314a864a1ea0099a945
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cn.flightfeather.thirdappmodule.httpservice;
 
import cn.flightfeather.thirdappmodule.bean.entity.Userinfo;
import okhttp3.ResponseBody;
import retrofit2.Call;
import retrofit2.http.Body;
import retrofit2.http.POST;
 
/**
 * Created by note_ff_1602 on 2018/3/9.
 */
 
public interface SettingsService {
    @POST("userinfo/")
    Call<ResponseBody> updateUserInfo(@Body Userinfo userinfo);
}