添加了浮窗最小话以及一键写入日期

This commit is contained in:
2026-06-18 12:41:45 +08:00
parent 88c374952a
commit acaf13ff95
8 changed files with 177 additions and 15 deletions

View File

@@ -321,4 +321,16 @@
AND status IN (0, 1)
</update>
<update id="batchSetPlanEnd">
UPDATE oa_project_schedule_step
SET plan_end = #{newEndTime}
WHERE track_id IN
<foreach collection="trackIds" item="id" open="(" separator="," close=")">
#{id}
</foreach>
AND del_flag = '0'
AND use_flag = '1'
AND status IN (0, 1)
</update>
</mapper>