소스 검색

缺失问题优化

chenjianhua 1 주 전
부모
커밋
943041d017
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      service-base/src/main/resources/mapper/daq/FundNavAssetMapper.xml

+ 6 - 0
service-base/src/main/resources/mapper/daq/FundNavAssetMapper.xml

@@ -125,5 +125,11 @@
         <if test="updateEndDate != null and updateEndDate !=''">
             and (nav.updatetime <![CDATA[ <= ]]> #{updateEndDate} or asset.updatetime <![CDATA[ <= ]]> #{updateEndDate})
         </if>
+        <if test="email != null and email !=''">
+            and parse.email like concat('%',#{email},'%')
+        </if>
+        <if test="channelName != null and channelName !=''">
+            and c.channel_name like concat('%',#{channelName},'%')
+        </if>
     </select>
 </mapper>