人工随访列表查询修改

This commit is contained in:
youxilong 2024-04-12 12:48:30 +08:00
parent 96e93196e5
commit f57352a5d5

View File

@ -410,6 +410,12 @@
<if test="nodeExecuteStatus != null ">
AND spmrn.node_execute_status = #{nodeExecuteStatus}
</if>
<if test="followStartTime != null ">
AND pter.execute_time >= #{followStartTime}
</if>
<if test="followEndTime != null ">
AND pter.execute_time &lt;= #{followEndTime}
</if>
</where>
order by spmr.create_time DESC
</select>