作者 tangxvhui
... ... @@ -99,16 +99,16 @@ func (rs *NodeTaskService) SendEvaluationNode() error {
task.NextSentAt = &nextTime
}
// 下个周期的起始时间=当前周期的截止时间
// 周期的截至时间=下一个周期的开始时间-1秒
if task.NextSentAt == nil {
cycleTimeEnd = maxTime
} else {
cycleTimeEnd = task.NextSentAt.Local()
cycleTimeEnd = task.NextSentAt.Local().Add(-1 * time.Second)
}
// 格式化周期的起始和截止时间
fmCycleStartTime := cycleTimeStart.Format("2006-1-2 15:04:05")
fmCycleTimeEnd := cycleTimeEnd.Format("2006-1-2 15:04:05")
fmCycleStartTime := cycleTimeStart.Format("2006-01-02 15:04:05")
fmCycleTimeEnd := cycleTimeEnd.Format("2006-01-02 15:04:05")
csat := &command.CreateStaffAssessTask{
CompanyId: int(project.CompanyId),
... ...