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);
|
}
|