|
|
|
@ -165,6 +165,12 @@ |
|
|
|
#{markets} |
|
|
|
</foreach> |
|
|
|
</if> |
|
|
|
<if test="statuses!= null and statuses.size > 0"> |
|
|
|
AND cr.status IN |
|
|
|
<foreach collection="statuses" item="statuses" open="(" separator="," close=")"> |
|
|
|
#{statuses} |
|
|
|
</foreach> |
|
|
|
</if> |
|
|
|
<if test="paymentCurrency!= null and paymentCurrency.length() > 0"> |
|
|
|
AND cr.payment_currency = #{paymentCurrency} |
|
|
|
</if> |
|
|
|
@ -181,6 +187,9 @@ |
|
|
|
<if test="startTime != null and endTime != null"> |
|
|
|
and cr.`pay_time` BETWEEN #{startTime} AND #{endTime} |
|
|
|
</if> |
|
|
|
<if test=" submitterId!= null"> |
|
|
|
and cr.submitter_id = #{submitterId} |
|
|
|
</if> |
|
|
|
</where> |
|
|
|
</select> |
|
|
|
</mapper> |