feiyu02
2024-08-15 196bb14112448857a885e32dc4149e308e00b01a
src/main/kotlin/cn/flightfeather/supervision/bgtask/TaskScoreRemind.kt
ÎļþÃû´Ó src/main/kotlin/cn/flightfeather/supervision/timingtask/TaskScoreRemind.kt ÐÞ¸Ä
@@ -1,4 +1,4 @@
package cn.flightfeather.supervision.timingtask
package cn.flightfeather.supervision.bgtask
import cn.flightfeather.supervision.common.wx.TemplateManager
import cn.flightfeather.supervision.domain.entity.MsgSubscribeWx
@@ -29,11 +29,13 @@
    }
    /**
     * å°è´¦æé†’任务定为每月5号早上10点提醒当月10号之前提交台账
     * è‡ªè¯„提醒任务定为每月5号、15号、28号早上10点提醒
     */
    override fun execute(localtime: LocalDateTime) {
        if (localtime.dayOfMonth == 5) {
            doTask(localtime)
        if (localtime.dayOfMonth == 5 || localtime.dayOfMonth == 15 || localtime.dayOfMonth == 28) {
            if (localtime.hour == 10 && localtime.minute == 0 && localtime.second == 0) {
                doTask(localtime)
            }
        }
    }
}