1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.tievd.jyz.dto;
|
| import lombok.Data;
| import lombok.experimental.Accessors;
|
| /**
| * @author yang'zhi'shui
| */
| @Data
| @Accessors(chain = true)
| public class DeviceStatusStatDTO {
|
| /** 在线数量 */
| private Integer onlineCount;
|
| /** 离线数量 */
| private Integer offlineCount;
|
| }
|
|