From 9ab35c4cbc2bf535ab15305b173d0e6d27ffb3ba Mon Sep 17 00:00:00 2001
From: ‘liusuyi’ <1951119284@qq.com>
Date: 星期五, 15 三月 2024 15:28:07 +0800
Subject: [PATCH] 增加密码验证接口
---
ard-work/src/main/java/com/ruoyi/alarmpoints/well/mapper/ArdAlarmpointsWellMapper.java | 27 ++++++++++++++++++++++++---
1 files changed, 24 insertions(+), 3 deletions(-)
diff --git a/ard-work/src/main/java/com/ruoyi/alarmpoints/well/mapper/ArdAlarmpointsWellMapper.java b/ard-work/src/main/java/com/ruoyi/alarmpoints/well/mapper/ArdAlarmpointsWellMapper.java
index 0cd3df9..a86c693 100644
--- a/ard-work/src/main/java/com/ruoyi/alarmpoints/well/mapper/ArdAlarmpointsWellMapper.java
+++ b/ard-work/src/main/java/com/ruoyi/alarmpoints/well/mapper/ArdAlarmpointsWellMapper.java
@@ -2,8 +2,12 @@
import java.util.List;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.alarmpoints.well.domain.ArdAlarmpointsWell;
+import com.ruoyi.alarmpoints.well.domain.ArdAlarmpointsWellDeptVo;
+import com.ruoyi.alarmpoints.well.domain.ArdAlarmpointsWellParam;
import com.ruoyi.common.annotation.DataScope;
+import org.apache.ibatis.annotations.Param;
/**
@@ -12,7 +16,7 @@
* @author 鍒樿嫃涔�
* @date 2023-03-07
*/
-public interface ArdAlarmpointsWellMapper {
+public interface ArdAlarmpointsWellMapper extends BaseMapper<ArdAlarmpointsWell> {
/**
* 鏌ヨ浜曠鐞�
*
@@ -20,6 +24,8 @@
* @return 浜曠鐞�
*/
public ArdAlarmpointsWell selectArdAlarmpointsWellById(String id);
+
+
/**
* 鏌ヨ浜曠鐞�
@@ -60,7 +66,13 @@
* @return 缁撴灉
*/
public int updateArdAlarmpointsWell(ArdAlarmpointsWell ardAlarmpointsWell);
-
+ /**
+ * 淇敼浜曠鐞嗘寜浜曞彿
+ *
+ * @param ardAlarmpointsWell 浜曠鐞�
+ * @return 缁撴灉
+ */
+ public int updateArdAlarmpointsWellByWellId(ArdAlarmpointsWell ardAlarmpointsWell);
/**
* 鍒犻櫎浜曠鐞�
*
@@ -84,6 +96,15 @@
* @return 缁撴灉
*/
- public boolean checkWellIdExists(String wellId);
+ public ArdAlarmpointsWell checkWellIdExists(String wellId);
+
+ List<ArdAlarmpointsWell> wellByPlanId(String id);
+
+ List<ArdAlarmpointsWellDeptVo> wellListDept(List<Long> deptList);
+
+ ArdAlarmpointsWell getWellDataByPatrolplanIdAndPosition(@Param("patrolplanId") String patrolplanId,@Param("longitude") Double longitude,@Param("latitude") Double latitude);
+
+ ArdAlarmpointsWell getWellById(String id);
+ List<ArdAlarmpointsWell> conditionList(@Param("wellId") String wellId,@Param("deptList") List<Long> deptList);
}
--
Gitblit v1.9.3