按项目分模块,避免配置冲突

This commit is contained in:
2024-09-09 16:17:15 +08:00
parent d5e1642efc
commit 41dfc320af
30 changed files with 714 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
<% if(elementType == 'select'){ %>
<% if(config.resultMap != null){ %>
<select id="${config.mapperElementId}" resultMap="${config.resultMap}">
<% }%>
<% if(config.resultMap == null){ %>
<select id="${config.mapperElementId}" resultType="${config.resultType}">
<% }%>
${sql}
</select>
<% } %>