双重预防项目-国泰新华二开定制版
e98eeaaa5766511fdb8e6d5e412eb1c59d1f07ce..f8606e6c37bbc815b59d0452fd7c3ecb0dcb6cef
2025-06-25 heheng
修复sql
f8606e 对比 | 目录
2025-06-25 heheng
修复sql
fa3f2a 对比 | 目录
2025-06-25 heheng
问题sql修复
99ecff 对比 | 目录
已修改5个文件
10 ■■■■ 文件已修改
src/main/java/com/ruoyi/project/tr/specialCheck/scheduleLogTask/ItemDangerReportSchedule.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/ruoyi/project/tr/specialCheck/scheduleLogTask/TaskReportSchedule.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mybatis/tr/TbSpecialCheckItemLogMapper.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mybatis/tr/TbSpecialCheckScoreAndDangerLogMapper.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mybatis/tr/TbSpecialCheckTaskLogMapper.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/ruoyi/project/tr/specialCheck/scheduleLogTask/ItemDangerReportSchedule.java
@@ -76,7 +76,7 @@
    @Transactional
//    @Scheduled(cron = "0 0 23 * * ?")    //每天晚上23点执行一次0 0 22,23 * * ?
    @Scheduled(cron = "15 12 12,23 * * ?")    //每天晚上22、23点执行一次
    @Scheduled(cron = "15 12 12,17,23 * * ?")    //每天晚上22、23点执行一次
//    @Scheduled(cron = "0 0/1 * * * ? ")    // 分钟
//    @Scheduled(cron = "0 0/35 * * * ? ")    // 分钟
//    @Scheduled(cron = "0/5 * * * * ?")
src/main/java/com/ruoyi/project/tr/specialCheck/scheduleLogTask/TaskReportSchedule.java
@@ -84,7 +84,7 @@
    @Transactional
//    @Scheduled(cron = "0 0 23 * * ?")    //每天晚上23点执行一次0 0 22,23 * * ?
    @Scheduled(cron = "35 12 12,23 * * ?")    //每天晚上22、23点执行一次
    @Scheduled(cron = "35 12 12,17,23 * * ?")    //每天晚上22、23点执行一次
//    @Scheduled(cron = "0 0/1 * * * ? ")    // 分钟
//    @Scheduled(cron = "0 0/35 * * * ? ")    // 分钟
//    @Scheduled(cron = "0/5 * * * * ?")
src/main/resources/mybatis/tr/TbSpecialCheckItemLogMapper.xml
@@ -162,7 +162,7 @@
    </select>
<!--    void updateItemDangerReportStatusById(HandlerSpecialCheckReportParam handlerCJReportParam);-->
    <update id="updateItemDangerReportStatusById">
        update tb_special_check_item_log
        update tb_special_check_item_log set
            report_status =  #{reportStatus},
            report_time = #{reportTime}
        where id = #{id}  and deleted = 0
src/main/resources/mybatis/tr/TbSpecialCheckScoreAndDangerLogMapper.xml
@@ -193,7 +193,7 @@
    </select>
<!--    void updateItemDangerReportStatusById(HandlerSpecialCheckReportParam handlerCJReportParam);-->
    <update id="updateItemDangerReportStatusById" >
        update tb_special_check_score_and_danger_log
        update tb_special_check_score_and_danger_log set
            report_status =  #{reportStatus},
            report_time = #{reportTime}
        where id = #{id}  and deleted = 0
src/main/resources/mybatis/tr/TbSpecialCheckTaskLogMapper.xml
@@ -158,7 +158,7 @@
<!--    void updateCheckTaskReportStatusById(HandlerCJReportParam handlerCJReportParam);-->
    <update id="updateCheckTaskReportStatusById">
        update tb_special_check_task_log
        update tb_special_check_task_log set
            report_status =  #{reportStatus},
            report_time = #{reportTime}
        where id = #{id}  and deleted = 0