| | |
| | | |
| | | import java.util.List; |
| | | |
| | | import cn.flightfeather.thirdapp.bean.Userinfo; |
| | | import cn.flightfeather.thirdapp.bean.entity.Userinfo; |
| | | import retrofit2.Call; |
| | | import retrofit2.http.GET; |
| | | import retrofit2.http.POST; |
| | | import retrofit2.http.Path; |
| | | import retrofit2.http.Query; |
| | | |
| | | /** |
| | | * Created by linli on 2018/1/23. |
| | |
| | | @GET("userinfo") |
| | | Call<List<Userinfo>> getAllUser(); |
| | | |
| | | @POST("userinfo/create") |
| | | Call<Userinfo> createAccount(@Query("sceneId") String sceneId); |
| | | |
| | | @GET("userinfo/scene/get") |
| | | Call<Userinfo> getByScene(@Query("sceneId") String sceneId); |
| | | } |