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.
13 lines
472 B
13 lines
472 B
package vo
|
|
|
|
import "laic-backend/common"
|
|
|
|
// AlarmPageReq 告警分页查询
|
|
type AlarmPageReq struct {
|
|
common.Pagination
|
|
Status string `json:"status" form:"status"` // active / acknowledged / resolved
|
|
Level string `json:"level" form:"level"`
|
|
DeviceType string `json:"deviceType" form:"deviceType"` // dock / drone
|
|
DockID string `json:"dockId" form:"dockId"`
|
|
Keyword string `json:"keyword" form:"keyword"` // 匹配 code / message_cn
|
|
}
|
|
|