1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.zy.api.entity;
|
| import lombok.Data;
| import java.io.Serializable;
| import java.util.Date;
|
| @Data
| public class DeviceConfig implements Serializable {
| private Integer id;
| private String ip;
| private Integer port;
| private String threadImpl;
| private Date createTime;
| private String deviceType;
| private Integer deviceNo;
| private Integer fake;
| private String fakeInitStatus;
| }
|
|