1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cn.flightfeather.thirdapp.httpservice;
 
import cn.flightfeather.thirdapp.bean.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);
}