github.com/johnnyeven/libtools@v0.0.0-20191126065708-61829c1adf46/task/constants/crontab_info.go (about)

     1  package constants
     2  
     3  import "github.com/johnnyeven/libtools/timelib"
     4  
     5  type CronTableInfo struct {
     6  	CronTableID string                 `json:"cronTableID"`
     7  	Channel     string                 `json:"channel"`
     8  	Subject     string                 `json:"subject"`
     9  	Spec        string                 `json:"spec"`
    10  	Args        string                 `json:"args"`
    11  	NextTime    timelib.MySQLTimestamp `json:"nextTime"`
    12  	Desc        string                 `json:"desc"`
    13  }