| | |
| | | package com.ruoyi.dataInterchange.model; |
| | | |
| | | import cn.hutool.core.util.ArrayUtil; |
| | | import com.ruoyi.dataInterchange.pojo.BaseModel; |
| | | import com.ruoyi.dataInterchange.util.jtt809.common.ByteArrayUtil; |
| | | import com.ruoyi.dataInterchange.util.jtt809.common.Jtt809Util; |
| | |
| | | import org.springframework.data.elasticsearch.annotations.Document; |
| | | import org.springframework.data.elasticsearch.annotations.Field; |
| | | import org.springframework.data.elasticsearch.annotations.FieldType; |
| | | |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 上报报警信息 |
| | |
| | | @Field(type = FieldType.Text) |
| | | private String driverNo; |
| | | /** |
| | | * 报警级别 |
| | | * 报警级别 0x001:一级报警,0x002: 二级报警 |
| | | */ |
| | | @Field(type = FieldType.Integer) |
| | | private int level; |
| | |
| | | */ |
| | | @Field(type = FieldType.Long) |
| | | private long pushTime; |
| | | /** |
| | | * 抓拍图片 |
| | | */ |
| | | @Field(type = FieldType.Text) |
| | | private String picUrl; |
| | | |
| | | |
| | | /** |