RequestData.java
1.28 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.xiniunet.railway.domain;
import com.alibaba.fastjson.annotation.JSONField;
import com.xiniunet.framework.base.BaseDomain;
/**
* Created by Administrator on 2018/3/22.
*/
public class RequestData extends BaseDomain {
private Integer deviceType;
private String deviceMac;
private String deviceCode;
/**
* 信号强度
*/
private Double RSS;
/**
* 设备电量
*/
private String deviceElectricy;
public Integer getDeviceType() {
return deviceType;
}
public void setDeviceType(Integer deviceType) {
this.deviceType = deviceType;
}
public String getDeviceMac() {
return deviceMac;
}
public void setDeviceMac(String deviceMac) {
this.deviceMac = deviceMac;
}
public String getDeviceCode() {
return deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
@JSONField(name="RSS")
public Double getRSS() {
return RSS;
}
public void setRSS(Double RSS) {
this.RSS = RSS;
}
public String getDeviceElectricy() {
return deviceElectricy;
}
public void setDeviceElectricy(String deviceElectricy) {
this.deviceElectricy = deviceElectricy;
}
}