code_expired_task.go 762 B

1234567891011121314151617181920212223242526272829303132
  1. package sms
  2. import (
  3. logger "eta/eta_mini_ht_api/common/component/log"
  4. "eta/eta_mini_ht_api/common/contants"
  5. "eta/eta_mini_ht_api/domian/sms"
  6. "eta/eta_mini_ht_api/task/base"
  7. )
  8. var (
  9. taskName base.TaskType = "ExpiredCodeTask"
  10. cron = "0/10 * * * * *"
  11. )
  12. // Execute Task ETA取研报的数据
  13. func (st *SMSTask) Execute(taskDetail *base.TaskDetail) error {
  14. logger.Info(contants.TaskFormat, "处理过期短信开始")
  15. err := sms.VerifiedCodeTask()
  16. if err != nil {
  17. logger.Error("自动更新短信状态失败:%v", err)
  18. }
  19. logger.Info(contants.TaskFormat, "处理过期短信结束")
  20. return err
  21. }
  22. type SMSTask struct {
  23. }
  24. func init() {
  25. smsTask := base.NewTask(taskName, cron, new(SMSTask), base.DEV)
  26. base.RegisterTask(&smsTask)
  27. }