From 633254dd9b9d56ac0241abb3b962b7de86a3adb3 Mon Sep 17 00:00:00 2001
From: Administrator <zhubaomin>
Date: 星期四, 07 十二月 2023 16:37:25 +0800
Subject: [PATCH] 2023-12-07 朱宝民 营销模块第一部分

---
 pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaClientTypeMapper.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaClientTypeMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaClientTypeMapper.xml
index fbc1eb5..195831a 100644
--- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaClientTypeMapper.xml
+++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaClientTypeMapper.xml
@@ -38,7 +38,7 @@
     from ba_client_type
     <trim prefix="where" suffixOverrides="and">
       <if test="name != null">
-        name like concat('%', #{name}, '%')
+        name like concat('%', #{name}, '%') and
       </if>
     </trim>
   </select>
@@ -55,12 +55,12 @@
     order by id DESC
     <trim prefix="limit " >
       <if test="start != null and count != null">
-        #{start}, #{count}
+        #{start,javaType=Integer,jdbcType=INTEGER}, #{count,javaType=Integer,jdbcType=INTEGER}
       </if>
     </trim>
   </select>
 
-  <insert id="insert" parameterType="com.dy.pipIrrGlobal.pojoBa.BaClientType">
+  <insert id="putin" parameterType="com.dy.pipIrrGlobal.pojoBa.BaClientType">
     <!--@mbg.generated-->
     insert into ba_client_type (id, `name`)
     values (#{id,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR})

--
Gitblit v1.8.0