Prechádzať zdrojové kódy

修复$includes不存在的问题

周浩 9 rokov pred
rodič
commit
3936aed90b

+ 1 - 1
hsweb-web-dao-impl-mybatis/src/main/resources/org/hsweb/web/dao/impl/mybatis/mapper/oracle/basic/BasicMapper.xml

@@ -83,7 +83,7 @@
             <choose>
                 <!--指定查询的字段-->
                 <when test="includes!=null and includes.size()>0">
-                    <foreach item="item" index="index" collection="$includes" open="" separator="," close="">
+                    <foreach item="item" index="index" collection="includes" open="" separator="," close="">
                         <if test="item in $fields">
                             ${$tableName}.${item} as "${item}"
                         </if>