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.
44 lines
1.8 KiB
44 lines
1.8 KiB
package HTTP_PRPXY
|
|
|
|
type ABStatus struct {
|
|
Values ABStatusValues `json:"values"`
|
|
Secret string `json:"secret"`
|
|
Type string `json:"type"`
|
|
}
|
|
|
|
type ABStatusValues struct {
|
|
CreateTime int64 `json:"createTime"`
|
|
Updater string `json:"updater"`
|
|
Deleted bool `json:"deleted"`
|
|
Id string `json:"id"`
|
|
WorkId string `json:"workId"`
|
|
UcId string `json:"ucId"`
|
|
DeviceCode string `json:"deviceCode"`
|
|
UserId string `json:"userId"`
|
|
UserName string `json:"userName"`
|
|
DataTime int64 `json:"dataTime"`
|
|
BeltStatus string `json:"beltStatus"`
|
|
DeviceStatus string `json:"deviceStatus"`
|
|
StartDate int64 `json:"startDate"`
|
|
EndDate int64 `json:"endDate"`
|
|
MainVol int `json:"mainVol"`
|
|
AscendWorkCertificate string `json:"ascend_work_certificate"`
|
|
BeltPoseLeft string `json:"beltPoseLeft"`
|
|
BeltPoseRight string `json:"beltPoseRight"`
|
|
BeltStatusLeft string `json:"beltStatusLeft"`
|
|
BeltStatusRight string `json:"beltStatusRight"`
|
|
TickbVol int `json:"tickbVol"`
|
|
//Avatar interface{} `json:"avatar"`
|
|
//AlarmType interface{} `json:"alarmType"`
|
|
//Identity interface{} `json:"identity"`
|
|
//IdentityImg interface{} `json:"identityImg"`
|
|
//IdentityImgF interface{} `json:"identityImgF"`
|
|
//Phone interface{} `json:"phone"`
|
|
Versions int `json:"versions"`
|
|
//Team interface{} `json:"team"`
|
|
Longitude string `json:"longitude"`
|
|
Latitude string `json:"latitude"`
|
|
Outsource string `json:"outsource"`
|
|
LocTime int64 `json:"locTime"`
|
|
//WorkLen interface{} `json:"workLen"`
|
|
}
|
|
|