14 lines
323 B
Go
14 lines
323 B
Go
package request
|
|
|
|
import (
|
|
"git.echol.cn/loser/st/server/model/common/request"
|
|
"time"
|
|
)
|
|
|
|
type SysErrorSearch struct {
|
|
CreatedAtRange []time.Time `json:"createdAtRange" form:"createdAtRange[]"`
|
|
Form *string `json:"form" form:"form"`
|
|
Info *string `json:"info" form:"info"`
|
|
request.PageInfo
|
|
}
|