HistorySynchronizer

This commit is contained in:
MaxKey
2021-05-25 23:28:48 +08:00
parent a154e435dd
commit 0306cc54bd
8 changed files with 234 additions and 2 deletions

View File

@@ -6,6 +6,21 @@
<if test="id != null and id != ''">
and id = #{id}
</if>
<if test="syncId != null and syncId != ''">
and syncid = #{syncId}
</if>
<if test="objectName != null and objectName != ''">
and objectname = #{objectName}
</if>
<if test="result != null and result != ''">
and result = #{result}
</if>
<if test="startDate != null and startDate != ''">
and synctime >= #{startDate}
</if>
<if test="endDate != null and endDate != ''">
and #{endDate} >= synctime
</if>
</sql>