| | |
| | | package models |
| | | |
| | | type EsSearch struct { |
| | | DataBases []string `json:"databases"` |
| | | Tasks []string `json:"tasks"` |
| | | TreeNodes []string `json:"treeNodes"` |
| | | Tabs []string `json:"tabs"` |
| | | SearchTime []string `json:"searchTime"` |
| | | Page int `json:"page"` |
| | | Size int `json:"size"` |
| | | Threshold float32 `json:"threshold"` |
| | | PicUrl string `json:"picUrl"` |
| | | Feature string `json:"feature"` |
| | | IsAggs bool `json:"isAggs"` |
| | | InputValue string `json:"inputValue"` |
| | | Collection string `json:"collection"` |
| | | DataBases []string `json:"databases"`//底库id集合 |
| | | Tasks []string `json:"tasks"`//任务id集合 |
| | | TreeNodes []string `json:"treeNodes"`//摄像机id集合 |
| | | Tabs []string `json:"tabs"`//标签集合 |
| | | SearchTime []string `json:"searchTime"`//时间 |
| | | Page int `json:"page"`//当前页,从1开始 |
| | | Size int `json:"size"`//每页的数量 |
| | | Threshold float32 `json:"threshold"`//阈值 |
| | | PicUrl string `json:"picUrl"`//上传的图片 |
| | | Feature string `json:"feature"`//特征 |
| | | IsAggs bool `json:"isAggs"`// |
| | | InputValue string `json:"inputValue"`//输入框 |
| | | Collection string `json:"collection"`// |
| | | AlarmLevel []string `json:"alarmLevel"`//布防等级 |
| | | } |