From 1897c4ad5fa73b3f0a36e1aa0e1e9000302a6ace Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期五, 31 十月 2025 17:35:09 +0800
Subject: [PATCH] 2025.10.31 1. 新增巡查场景历史详情相关数据逻辑(待完成);

---
 app/src/main/java/cn/flightfeather/thirdappmodule/httpservice/EvaluationService.java |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/app/src/main/java/cn/flightfeather/thirdappmodule/httpservice/EvaluationService.java b/app/src/main/java/cn/flightfeather/thirdappmodule/httpservice/EvaluationService.java
index 8f8391b..57439b8 100644
--- a/app/src/main/java/cn/flightfeather/thirdappmodule/httpservice/EvaluationService.java
+++ b/app/src/main/java/cn/flightfeather/thirdappmodule/httpservice/EvaluationService.java
@@ -4,6 +4,7 @@
 
 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;
@@ -38,6 +39,20 @@
     @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);
 

--
Gitblit v1.9.3