| | |
| | | |
| | | import cn.flightfeather.thirdappmodule.bean.entity.Evaluation; |
| | | import cn.flightfeather.thirdappmodule.bean.entity.Itemevaluation; |
| | | import cn.flightfeather.thirdappmodule.model.bean.BaseResponse; |
| | | import io.reactivex.Observable; |
| | | import okhttp3.ResponseBody; |
| | | import retrofit2.Call; |
| | |
| | | @POST("evaluation/rankoftown") |
| | | Call<List<Evaluation>> getRankofTown(@Query("tguid") String tguid, @Query("scensetypeid") String scensetypeid); |
| | | |
| | | /** |
| | | * 根据场景获取历史评估得分 |
| | | * @param sceneId 场景主键id |
| | | * @param page 页码 |
| | | * @param pageSize 每页数量 |
| | | * @return 历史评估得分 |
| | | */ |
| | | @GET("evaluation/byScene") |
| | | Observable<Response<BaseResponse<List<Evaluation>>>> getEvaluationListByScene( |
| | | @Query("sceneId") String sceneId, |
| | | @Query("page") int page, |
| | | @Query("pageSize") int pageSize |
| | | ); |
| | | |
| | | @PUT("itemevaluation/addlist/") |
| | | Call<ResponseBody> putItemEvaluationList(@Body List<Itemevaluation> itemevaluationList); |
| | | |