Kaynağa Gözat

缺失问题优化

chenjianhua 1 hafta önce
ebeveyn
işleme
943041d017

+ 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>