| 123456789101112131415161718192021222324252627282930313233 |
- package main
- import "C"
- import (
- "time"
- )
- type tagMwBasicDeviceInfo struct {
- Manufacturer string /**< 厂商 */
- DeviceModel string /**< 设备类型 */
- SerialNumber string /**< 设备序列号 */
- DeviceMAC string /**< 设备MAC地址 */
- FirmwareVersion string /**< 软件版本, program 版本 */
- HardwareID string /**< 硬件标识 */
- PCBVersion string /**< PCB版本 */
- UbootVersion string /**< UBOOT引导版本 */
- }
- type tagVehicleInfo struct {
- VehiclePlate string //车牌
- VehicleType int8 //车辆类型
- VehicleColor byte //车身颜色
- VehicleSpeed int //车辆速度
- PassTime time.Time //经过时刻:YYYYMMDDHHMMSS, 时间按24小时制
- PlaceName string //地点名称
- VehicleDirection int8 //行使方向
- LaneID int8 //车道编号:从1开始, 车辆行驶方向最左车道为1,由左向右顺序编号
- LaneType int8 //车道类型:0-机动车道,1-非机动车道
- CamID string //设备编号:采集设备统一编号或卡口相机编码, 不可为空
- TollgateID string //卡口编号:产生该信息的卡口代码
- IdentifyStatus int8 //识别状态
- StreamHandle int //
- }
|