123456789101112131415161718192021222324252627282930313233343536373839 |
- package model
- import "iot_manager_service/app/device/dao"
- type CaptureDetail struct {
- dao.CaptureUnit
- PoleName string `json:"poleName"`
- PoleSn string `json:"poleSn"`
- PoleLat float32 `json:"poleLat"`
- PoleLng float32 `json:"poleLng"`
- InstallLocation string `json:"installLocation"`
- PointName string `json:"pointName"`
- PointSn string `json:"pointSn"`
- PointLocation string `json:"pointLocation"`
- NetworkState string `json:"networkState"`
- EndLineTime string `json:"endLineTime"`
- }
- type RspCaptureList struct {
- Records []CaptureDetail `json:"records"`
- Current int `json:"current"`
- Size int `json:"size"`
- Total int `json:"total"`
- Pages int `json:"pages"`
- }
- type RspPointList struct {
- Records []dao.CheckPoint `json:"records"`
- Current int `json:"current"`
- Size int `json:"size"`
- Total int `json:"total"`
- Pages int `json:"pages"`
- }
- type ReqCaptureRemove struct {
- IDs int `json:"ids"`
- SN int `json:"sn"`
- Type string `json:"type"`
- }
|