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