17 lines
414 B
Go
17 lines
414 B
Go
package host
|
|
|
|
import "git.lnton.com/lnton/pkg/web"
|
|
|
|
type FindDevicesInput struct {
|
|
web.PagerFilter
|
|
ID string `form:"id"`
|
|
Name string `form:"name"`
|
|
Status string `form:"status"`
|
|
ISPlatform string `form:"is_platform"`
|
|
Protocol string `form:"protocol"` // 协议类型:GB28181, ONVIF,RTSP,RTMP
|
|
}
|
|
type FindDeviceOutput struct {
|
|
Items []Device `json:"items"`
|
|
Total int64 `json:"total"`
|
|
}
|