You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
641 B
13 lines
641 B
package config
|
|
|
|
type Timer struct {
|
|
Start bool `mapstructure:"start" json:"start" yaml:"start"` // 是否启用
|
|
Spec string `mapstructure:"spec" json:"spec" yaml:"spec"` // CRON表达式
|
|
Detail []Detail `mapstructure:"detail" json:"detail" yaml:"detail"`
|
|
}
|
|
|
|
type Detail struct {
|
|
TableName string `mapstructure:"tableName" json:"tableName" yaml:"tableName"` // 需要清理的表名
|
|
CompareField string `mapstructure:"compareField" json:"compareField" yaml:"compareField"` // 需要比较时间的字段
|
|
Interval string `mapstructure:"interval" json:"interval" yaml:"interval"` // 时间间隔
|
|
}
|