From 15f5680b532238290d0adf095a93e5af1c5f1203 Mon Sep 17 00:00:00 2001 From: zuoxiao <470321431@qq.com> Date: 星期五, 07 二月 2025 17:14:57 +0800 Subject: [PATCH] 1.添加显示隐藏取水口、分水房功能 2.完善图例自定义控件功能和显示 3.处理工单添加选择时间功能 --- app/src/main/java/com/dayu/pipirrapp/dao/InspectionLocationDao.java | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/dayu/pipirrapp/dao/InspectionLocationDao.java b/app/src/main/java/com/dayu/pipirrapp/dao/InspectionLocationDao.java index 801797c..efb9a3a 100644 --- a/app/src/main/java/com/dayu/pipirrapp/dao/InspectionLocationDao.java +++ b/app/src/main/java/com/dayu/pipirrapp/dao/InspectionLocationDao.java @@ -32,12 +32,19 @@ InspectionLocationBean findFirst(); //鏌ヨ鎵�鏈夋病鏈変笂浼犵殑鍧愭爣 - @Query("select * from InspectionLocationBean where isPost=false") - List<InspectionLocationBean> findByNoPost(); + @Query("select * from InspectionLocationBean where isPost=false AND mInspectId=:mInspectId ORDER BY locateTime ASC") + Single<List<InspectionLocationBean>> findByNoPostAndInspectId(String mInspectId); //鏌ヨ鎵�鏈夎宸℃id鐨勫潗鏍� @Query("select * from InspectionLocationBean where mInspectId=:mInspectId ORDER BY locateTime ASC") Single<List<InspectionLocationBean>> findByInspectId(String mInspectId); + //鏌ヨ鎵�鏈夋湭涓婁紶鐨刴InspectId + @Query("SELECT DISTINCT mInspectId FROM InspectionLocationBean WHERE isPost = false") + Single<List<String>> getUnpostedMInspectIds(); + + //鏇存柊鎵�鏈塵InspectId涓嬬殑宸蹭笂浼犵姸鎬� + @Query("UPDATE InspectionLocationBean SET isPost = true WHERE mInspectId = :mInspectId") + Completable updataByInspectIdSetIsPost(String mInspectId); } -- Gitblit v1.8.0