123456789101112131415161718192021222324252627 |
- package message
- import (
- logger "eta/eta_mini_ht_api/common/component/log"
- "eta/eta_mini_ht_api/common/contants"
- "eta/eta_mini_ht_api/task/base"
- )
- var (
- taskName base.TaskType = "NoticeTask"
- cron = "0/5 * * * * *"
- )
- // Execute Task ETA取研报的数据
- func (au *AuthorTask) Execute(taskDetail *base.TaskDetail) error {
- logger.Info(contants.TaskFormat, "监听更新通知开始")
- //metaInfoList := userServcie.getInitMetaInfos()
- //报告和媒体
- return nil
- }
- type AuthorTask struct {
- }
- func init() {
- }
|