From e234a15b428267997c903a4ed42536c5d9f14a1f Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期一, 10 十一月 2025 13:10:42 +0800
Subject: [PATCH] 2025.11.10 1. 新增巡查场景历史详情相关数据逻辑; 2. 新增工地施工阶段修改界面;

---
 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