OpenPhysicalModel.go 834 B

123456789101112131415
  1. package common
  2. type OpenPhysicalModel struct {
  3. // 【是否绑定印控设备】是否绑定印控设备 true:绑定印控设备;false:未绑定印控
  4. Binding *bool `json:"binding,omitempty"`
  5. // 【智能章筒型号】智能章筒型号 QUNJE_THREE:群杰3.0;QUNJE_FIVE:群杰5.0;ZHANGIN:章管家智能印章
  6. DeviceType string `json:"deviceType,omitempty"`
  7. // 【设备id】设备id 用印宝识别码绑定群杰章筒时返回
  8. DeviceId string `json:"deviceId,omitempty"`
  9. // 【蓝牙MAC地址】蓝牙MAC地址 绑定群杰、章管家章筒时返回
  10. Bluetooth string `json:"bluetooth,omitempty"`
  11. // 【地理位置】地理位置 未绑定印控设备时,返回手动维护的位置信息;绑定印控设备后,将从设备实时获取位置信息
  12. Location string `json:"location,omitempty"`
  13. }