1234567891011121314151617181920 |
- package config
- type CrontabInfo struct {
- IsRun bool
- NewDocsList Cron
- UpdateDocsList Cron
- }
- type Cron struct {
- Name string
- First bool
- Time string
- StartId int64
- StartIdKey string
- Count int
- StartDate string
- StartDateKey string
- EndDate string
- SleepTime int
- }
|