From dfec0257c8a662fec8e3f27667355f9b1ca09a20 Mon Sep 17 00:00:00 2001
From: fujunling <2984387807@qq.com>
Date: 星期二, 30 五月 2023 09:50:38 +0800
Subject: [PATCH] 解决api配置冲突
---
Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CommonsMapper.xml | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CommonsMapper.xml b/Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CommonsMapper.xml
index 736ff64..4cbd321 100644
--- a/Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CommonsMapper.xml
+++ b/Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CommonsMapper.xml
@@ -6,7 +6,7 @@
<select id="selectByCount" resultType="java.util.Map">
select COUNT(w.OID) count
from ${tableName} w
- join PL_CODE_ALLCODE c on w.OID = c.CREATECODEOID
+ join PL_CODE_ALLCODE c on w.OID = c.CREATECODEOID
where c.CREATECODEBTM = #{btm}
and c.CODERULEOID = #{oid}
and w.LASTR = '1'
@@ -14,4 +14,13 @@
</select>
+ <select id="selectById" resultType="java.lang.String">
+ ${inSql}
+ </select>
+
+ <select id="selectBySql" resultType="java.util.Map">
+ ${inSql}
+ </select>
+
+
</mapper>
--
Gitblit v1.9.3