20 lines
401 B
Go
20 lines
401 B
Go
package validator
|
|
|
|
import "lone-services/pkg/validate"
|
|
|
|
// LogsItemsValidator 查看列表
|
|
type LogsItemsValidator struct {
|
|
Page int32
|
|
Size int32
|
|
Type int32
|
|
Ip string
|
|
AdminId int64
|
|
ServiceId int64
|
|
Time []string
|
|
}
|
|
|
|
// GetMessage 查看列表 - 提示消息
|
|
func (p LogsItemsValidator) GetMessage() validate.ValidatorMessages {
|
|
return validate.ValidatorMessages{}
|
|
}
|