|
|
@@ -1120,10 +1120,10 @@
|
|
|
<if test="feeTypeCd != null and feeTypeCd != ''">
|
|
|
and pfc.fee_type_cd = #{feeTypeCd}
|
|
|
</if>
|
|
|
- <if test="startTime !=null">
|
|
|
+ <if test="startTime !=null and startTime != ''">
|
|
|
and t.create_time >= #{startTime}
|
|
|
</if>
|
|
|
- <if test="endTime !=null">
|
|
|
+ <if test="endTime !=null and endTime != ''">
|
|
|
and t.create_time <= #{endTime}
|
|
|
</if>
|
|
|
) t
|
|
|
@@ -1202,10 +1202,10 @@
|
|
|
<if test="feeTypeCd != null and feeTypeCd != ''">
|
|
|
and pfc.fee_type_cd = #{feeTypeCd}
|
|
|
</if>
|
|
|
- <if test="startTime !=null">
|
|
|
+ <if test="startTime !=null and startTime != ''">
|
|
|
and t.create_time >= #{startTime}
|
|
|
</if>
|
|
|
- <if test="endTime !=null">
|
|
|
+ <if test="endTime !=null and endTime != ''">
|
|
|
and t.create_time <= #{endTime}
|
|
|
</if>
|
|
|
order by t.create_time desc
|