fix: Bug #395 #398 #399 门诊医生站功能修复

- #395: 传染病报告管理添加撤销审核功能入口
- #398: 修复号源超时后错误过滤问题,改进时间比较逻辑
- #399: 优化已取号状态查询过滤逻辑

【guanyu】
This commit is contained in:
关羽
2026-04-23 17:18:42 +08:00
committed by guanyu
parent 95e379e5a5
commit 6962a8b1c1
8 changed files with 560 additions and 3 deletions

View File

@@ -252,4 +252,11 @@
ORDER BY t1.report_date DESC
</select>
<!-- 撤销审核传染病报卡 -->
<update id="revokeAuditCard">
UPDATE infectious_card
SET status = #{status}::INTEGER,
update_time = CURRENT_TIMESTAMP
WHERE card_no = #{cardNo}
</update>
</mapper>