From 8a9a931d5f8ca0e235e0d263032e386038f917fa Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期一, 27 十一月 2023 11:09:22 +0800
Subject: [PATCH] limit中start、count设置 jdbcType=INTEGER

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

diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaUserMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaUserMapper.xml
index a12bbd7..2e30167 100644
--- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaUserMapper.xml
+++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaUserMapper.xml
@@ -86,7 +86,7 @@
         order by id DESC
         <trim prefix="limit " >
             <if test="start != null and count != null">
-                #{start}, #{count}
+                #{start,jdbcType=INTEGER}, #{count,jdbcType=INTEGER}
             </if>
         </trim>
     </select>

--
Gitblit v1.8.0