一日流程评估-二次评估

This commit is contained in:
zhanglipeng
2021-05-25 18:23:11 +08:00
parent c1bdf1c3fe
commit 92f4556d22
7 changed files with 480 additions and 30 deletions

View File

@ -115,6 +115,7 @@
<if test="endTime != null and endTime != ''"><!-- 结束时间检索 -->
AND date_format(d.create_time,'%y%m%d') &lt;= date_format(#{endTime},'%y%m%d')
</if>
<if test="remark != null and remark != ''">and d.remark = #{remark}</if>
<!-- 数据范围过滤 -->
${dataScope}
order by d.create_time desc
@ -264,8 +265,8 @@ group by t.pgdx
<if test="pgdxxm != null ">pgdxxm = #{pgdxxm},</if>
<if test="createUserid != null ">create_userid = #{createUserid},</if>
<if test="createTime != null ">create_time = #{createTime},</if>
<if test="remark != null and remark != ''">#{remark},</if>
<if test="status != null and status != ''">#{status},</if>
<if test="remark != null and remark != ''">remark = #{remark},</if>
<if test="status != null and status != ''">status = #{status},</if>
</trim>
where id = #{id}
</update>