From 973e04d0ab5dda92a0014bdaf1150b86abde398e Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期三, 06 八月 2025 16:35:21 +0800
Subject: [PATCH] 修改实现逻辑

---
 pipIrr-platform/pipIrr-global/src/main/resources/mapper/MdParamMapper.xml |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/MdParamMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/MdParamMapper.xml
index 10b32b0..7c4157d 100644
--- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/MdParamMapper.xml
+++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/MdParamMapper.xml
@@ -99,4 +99,25 @@
       sense = #{sense,jdbcType=VARCHAR}
     where id = #{id,jdbcType=BIGINT}
   </update>
+
+
+
+  <select id="selectById" parameterType="java.lang.Long" resultType="com.dy.pipIrrGlobal.voMd.VoParam">
+    <!--@mbg.generated-->
+    select
+    <include refid="Base_Column_List" />
+    from md_param
+    where id = #{id,jdbcType=BIGINT}
+  </select>
+
+
+  <select id="selectAll" parameterType="java.lang.Long" resultType="com.dy.pipIrrGlobal.voMd.VoParam">
+    select
+    <include refid="Base_Column_List" >
+      <property name="alias" value="bd"/>
+    </include>
+    from md_param tb
+    where crops_id = #{cropsId,jdbcType=BIGINT}
+  </select>
+
 </mapper>
\ No newline at end of file

--
Gitblit v1.8.0