刘俊驰 9 月之前
父節點
當前提交
0079ec8605
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      mec-biz/src/main/resources/config/mybatis/MemberRankSettingMapper.xml

+ 3 - 0
mec-biz/src/main/resources/config/mybatis/MemberRankSettingMapper.xml

@@ -85,6 +85,9 @@
             <if test="updateEndTime !=null">
                 AND mrs.update_time_ &lt;= #{updateEndTime}
             </if>
+            <if test="name !=null and name != ''">
+                AND mrs.name_ LIKE CONCAT('%',#{name},'%')
+            </if>
             <if test="hasChildren !=null">
             	<if test="hasChildren == true">
 					AND mrs.parent_id_ != 0