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.
24 lines
387 B
24 lines
387 B
package dao |
|
|
|
import "go-common/app/service/main/antispam/util" |
|
|
|
// Condition . |
|
type Condition struct { |
|
*util.Pagination |
|
|
|
Offset string |
|
Limit string |
|
|
|
Tags []string |
|
Contents []string |
|
|
|
Area string |
|
Search string |
|
State string |
|
HitCounts string |
|
|
|
Order, OrderBy string |
|
LimitType, LimitScope string |
|
StartTime, EndTime string |
|
LastModifiedTime string |
|
}
|
|
|