| 12345678910111213141516171819 | package reportimport "github.com/robfig/cron"const (	cronSettDateCutoff = "0 0 1 * * *"   	cronRunStart       = "0 0 17 * * *"  	cronMinuteStart    = "0 */1 * * * *" 	cronMinuteTwoStart = "0 */2 * * * *" )func SysCronStart() {	c := cron.New()	c.AddFunc(cronMinuteStart, ClientAccount)     	c.AddFunc(cronMinuteStart, CashOut)           	c.AddFunc(cronMinuteTwoStart, CashOutAccount) 	c.Start()}
 |