From bab406b3393a3df6854ee5970a5a62a33f34e597 Mon Sep 17 00:00:00 2001
From: zhubaomin <zhubaomin>
Date: 星期三, 02 四月 2025 15:09:39 +0800
Subject: [PATCH] 项目管理部分统一参数格式

---
 pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoIr/IrIrrigateGroupMapper.java |   42 ++++++++++++++++++++++++++++++++----------
 1 files changed, 32 insertions(+), 10 deletions(-)

diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoIr/IrIrrigateGroupMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoIr/IrIrrigateGroupMapper.java
index af2b58a..9ee8d84 100644
--- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoIr/IrIrrigateGroupMapper.java
+++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoIr/IrIrrigateGroupMapper.java
@@ -3,28 +3,36 @@
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.dy.pipIrrGlobal.pojoIr.IrIrrigateGroup;
 import com.dy.pipIrrGlobal.voIr.VoGroup;
+import com.dy.pipIrrGlobal.voIr.VoGroupDetail;
 import com.dy.pipIrrGlobal.voIr.VoGroupOne;
+import com.dy.pipIrrGlobal.voIr.VoGroupSimple;
 import org.apache.ibatis.annotations.Mapper;
 
 import java.util.List;
 import java.util.Map;
 
 /**
- * @author :WuZeYu
- * @Date :2024/5/21  15:32
- * @LastEditTime :2024/5/21  15:32
+ * @author ZhuBaoMin
+ * @date 2025-03-18 11:21
+ * @LastEditTime 2025-03-18 11:21
  * @Description
  */
+
 @Mapper
 public interface IrIrrigateGroupMapper extends BaseMapper<IrIrrigateGroup> {
-    //澧�
+    int deleteByPrimaryKey(Long id);
+
+    int insert(IrIrrigateGroup record);
+
     int insertSelective(IrIrrigateGroup record);
 
-    //鍒�
-    int deleteLogicById(Long id);
+    IrIrrigateGroup selectByPrimaryKey(Long id);
 
-    //鏀�
     int updateByPrimaryKeySelective(IrIrrigateGroup record);
+
+    int updateByPrimaryKey(IrIrrigateGroup record);
+
+    int deleteLogicById(Long id);
 
     //鏌ヤ竴涓�
     VoGroupOne selectById(Long id);
@@ -46,9 +54,23 @@
     List<VoGroup> getIrrigateGroups(Map<?, ?> params);
 
     /**
-     * 鏍规嵁杞亴缁勭紪鍙疯幏鍙栧彇姘村彛鍒楄〃
+     * 鏍规嵁鎸囧畾鏉′欢鑾峰彇杞亴缁勮褰曟暟
+     * @param params
+     * @return
+     */
+    Long getSimpleGroupCount(Map<?, ?> params);
+
+    /**
+     * 鏍规嵁鎸囧畾鏉′欢鑾峰彇杞亴缁勫垪琛�
+     * @param params
+     * @return
+     */
+    List<VoGroupSimple> getSimpleGroups(Map<?, ?> params);
+
+    /**
+     * 鏍规嵁杞亴缁処D鑾峰彇杞亴缁勮鎯�
      * @param groupId
      * @return
      */
-    List<Long> getIntakesByGroupId(Long groupId);
-}
+    VoGroupDetail getGroupDetail(Long groupId);
+}
\ No newline at end of file

--
Gitblit v1.8.0