1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.cloud.count.model;
|
| import lombok.Data;
|
| /**
| * 接收的统计设备发送的报文信息
| */
| @Data
| public class People {
|
| private String dateStr;
|
| private String startTime;
|
| private String endTime;
|
| private int enters;
|
| private int exits;
|
| private long timestamp;
| }
|
|