Files
crawlab/db/generic/list.go
2024-06-14 15:59:48 +08:00

16 lines
205 B
Go

package generic
type ListQueryCondition struct {
Key string
Op string
Value interface{}
}
type ListQuery []ListQueryCondition
type ListOptions struct {
Skip int
Limit int
Sort []ListSort
}