Commit 7b8f2c46 authored by zhkwei's avatar zhkwei

日记账数据预览筛选条件后台xml

parent 060ad42c
......@@ -434,6 +434,9 @@
<if test="record.description != null and record.description != ''">
and description LIKE CONCAT('%' ,#{record.description},'%')
</if>
<if test="record.source != null and record.source != ''">
and source LIKE CONCAT('%' ,#{record.source},'%')
</if>
<if test="record.periodStart!=null">
AND account_period >= #{record.periodStart,jdbcType=INTEGER}
</if>
......@@ -466,6 +469,10 @@
<if test="record.description != null and record.description != ''">
and description LIKE CONCAT('%' ,#{record.description},'%')
</if>
<if test="record.source != null and record.source != ''">
and source LIKE CONCAT('%' ,#{record.source},'%')
</if>
<if test="record.periodStart!=null">
AND period &gt;= #{record.periodStart,jdbcType=INTEGER}
</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment