qinglong-go/service/cron/filter.go

18 lines
325 B
Go
Raw Normal View History

2022-11-16 10:20:07 +00:00
package cron
import "github.com/huoxue1/qinglong-go/models"
type Filter interface {
filter([]*models.Crontabs) []*models.Crontabs
}
type RegFilter struct {
Property string `json:"property"`
Value string `json:"value"`
}
type NoRegFilter struct {
Property string `json:"property"`
Value string `json:"value"`
}