natsio/model/common_request.go

29 lines
584 B
Go
Raw Normal View History

2022-08-30 04:03:02 +00:00
package model
import "go.mongodb.org/mongo-driver/mongo/options"
type FindWithCondition struct {
Conditions interface{} `json:"conditions"`
Opts []*options.FindOptions `json:"opts"`
}
type FindOneCondition struct {
Conditions interface{} `json:"conditions"`
}
type DistinctWithField struct {
Conditions interface{} `json:"conditions"`
Filed string `json:"filed"`
}
2022-08-31 03:53:51 +00:00
type ActionBy struct {
ID string `json:"id"`
Name string `json:"name"`
}
2022-10-26 10:56:15 +00:00
// ClickAction ...
type ClickAction struct {
Type string `json:"type"`
Value string `json:"value"`
}