From e67870fff62635cd14beb0d5988f08aeef4b22fa Mon Sep 17 00:00:00 2001
From: zhubaomin <zhubaomin>
Date: 星期一, 07 四月 2025 21:27:06 +0800
Subject: [PATCH] 添加远程关阀式终止灌溉计划,未测试

---
 pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeLossMapper.java |   45 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 45 insertions(+), 0 deletions(-)

diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeLossMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeLossMapper.java
new file mode 100644
index 0000000..dbf3e71
--- /dev/null
+++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoSe/SeLossMapper.java
@@ -0,0 +1,45 @@
+package com.dy.pipIrrGlobal.daoSe;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.dy.pipIrrGlobal.pojoSe.SeLoss;
+import com.dy.pipIrrGlobal.voSe.VoLoss;
+import org.apache.ibatis.annotations.Mapper;
+
+import java.util.List;
+import java.util.Map;
+
+/**
+ * @author ZhuBaoMin
+ * @date 2023-12-25 13:52
+ * @LastEditTime 2023-12-25 13:52
+ * @Description
+ */
+
+@Mapper
+public interface SeLossMapper extends BaseMapper<SeLoss> {
+    int deleteByPrimaryKey(Long id);
+
+    int insert(SeLoss record);
+
+    int insertSelective(SeLoss record);
+
+    SeLoss selectByPrimaryKey(Long id);
+
+    int updateByPrimaryKeySelective(SeLoss record);
+
+    int updateByPrimaryKey(SeLoss record);
+
+    /**
+     * 鏍规嵁鎸囧畾鐨勬潯浠惰幏鍙栨寕澶辫褰曟暟
+     * @param params
+     * @return
+     */
+    Long getRecordCount(Map<?, ?> params);
+
+    /**
+     * 鏍规嵁鎸囧畾鐨勬潯浠惰幏鍙栨寕澶辫褰�
+     * @param params
+     * @return
+     */
+    List<VoLoss> getLosses(Map<?, ?> params);
+}
\ No newline at end of file

--
Gitblit v1.8.0