GetFilledCronTimer 获得以cron填充好的ts
(croncmd string, alert string, img string, botqq, gid int64)
| 30 | |
| 31 | // GetFilledCronTimer 获得以cron填充好的ts |
| 32 | func GetFilledCronTimer(croncmd string, alert string, img string, botqq, gid int64) *Timer { |
| 33 | var t Timer |
| 34 | t.Alert = alert |
| 35 | t.Cron = croncmd |
| 36 | t.URL = img |
| 37 | t.SelfID = botqq |
| 38 | t.GrpID = gid |
| 39 | return &t |
| 40 | } |
| 41 | |
| 42 | // GetFilledTimer 获得填充好的ts |
| 43 | func GetFilledTimer(dateStrs []string, botqq, grp int64, matchDateOnly bool) *Timer { |