1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package com.ruoyi.dataInterchange.model;
|
| import lombok.Data;
|
| /**
| * @author zhibing.pu
| * @Date 2025/3/21 13:59
| */
| @Data
| public class RealVideoMsg {
| /**
| * 车牌号
| */
| private String vehicleNo;
| /**
| * 车牌颜色
| */
| private int vehicleColor;
| /**
| * 子业务类型标识
| */
| private int dataType;
| /**
| * 后续数据长度
| */
| private int dataLength;
| /**
| * 数据部分
| */
| private byte[] data;
| }
|
|