|
@@ -84,17 +84,20 @@
|
|
|
AND cal.create_time_ >= #{createStartTime}
|
|
|
</if>
|
|
|
<if test="createEndTime != null">
|
|
|
- AND cal.create_time_ <= #{createStartTime}
|
|
|
+ AND cal.create_time_ <= #{createEndTime}
|
|
|
</if>
|
|
|
<if test="payStartTime != null">
|
|
|
AND cal.pay_time_ >= #{payStartTime}
|
|
|
</if>
|
|
|
<if test="payEndTime != null">
|
|
|
- AND cal.pay_time_ <= #{payStartTime}
|
|
|
+ AND cal.pay_time_ <= #{payEndTime}
|
|
|
</if>
|
|
|
<if test="groupType != null and groupType != ''">
|
|
|
AND cal.group_type_ = #{groupType}
|
|
|
</if>
|
|
|
+ <if test="returnFeeType != null and returnFeeType != ''">
|
|
|
+ AND cal.return_fee_type_ = #{returnFeeType}
|
|
|
+ </if>
|
|
|
<if test="organId != null and organId != ''">
|
|
|
AND FIND_IN_SET(cal.organ_id_,#{organId})
|
|
|
</if>
|