|
@@ -58,6 +58,9 @@
|
|
|
<if test="vo.beginTime != null and vo.endTime != null">
|
|
|
and (time between DATE_FORMAT(#{vo.beginTime},'%Y-%m-%d %H:%i:%s') and DATE_FORMAT(#{vo.endTime},'%Y-%m-%d %H:%i:%s'))
|
|
|
</if>
|
|
|
+ <if test="vo.beginSignTime != null and vo.endSignTime != null">
|
|
|
+ and (sign_time between #{vo.beginSignTime} and #{vo.endSignTime})
|
|
|
+ </if>
|
|
|
<if test="vo.accountId != null">
|
|
|
and account_id = #{vo.accountId}
|
|
|
</if>
|
|
@@ -69,6 +72,7 @@
|
|
|
<foreach collection="vo.ids" open="(" separator="," close=")" item="item">
|
|
|
#{item}
|
|
|
</foreach>
|
|
|
+
|
|
|
</if>
|
|
|
</if>
|
|
|
</where>
|