刘俊驰 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