fxl
2023-05-04 e150655a785de36a65a26a0dc4d3d6d65fe7e9d0
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package com.hxzkoa.udp;
 
/** 标签和基站的测距数据 */
public class Ceju {
    String ce_baoxu;
    String ce_ip;
    String ce_tagid;
    String ce_time;
    int ce_timestamp;
    String ce_anchorid;
    String ce_distance;
    String ce_battery;// 电量
    String ce_button;
    String ce_jingzhi;
    String ce_xiumian;
    String ce_power;
    String ce_power_diff;
    int ce_taghz;
    String ce_timepian;
    int ce_tagheigh;
 
    public String getCe_baoxu() {
        return ce_baoxu;
    }
 
    public void setCe_baoxu(String ce_baoxu) {
        this.ce_baoxu = ce_baoxu;
    }
 
    public String getCe_ip() {
        return ce_ip;
    }
 
    public void setCe_ip(String ce_ip) {
        this.ce_ip = ce_ip;
    }
 
    public String getCe_tagid() {
        return ce_tagid;
    }
 
    public void setCe_tagid(String ce_tagid) {
        this.ce_tagid = ce_tagid;
    }
 
    public String getCe_time() {
        return ce_time;
    }
 
    public void setCe_time(String ce_time) {
        this.ce_time = ce_time;
    }
 
    public int getCe_timestamp() {
        return ce_timestamp;
    }
 
    public void setCe_timestamp(int ce_timestamp) {
        this.ce_timestamp = ce_timestamp;
    }
 
    public String getCe_anchorid() {
        return ce_anchorid;
    }
 
    public void setCe_anchorid(String ce_anchorid) {
        this.ce_anchorid = ce_anchorid;
    }
 
    public String getCe_distance() {
        return ce_distance;
    }
 
    public void setCe_distance(String ce_distance) {
        this.ce_distance = ce_distance;
    }
 
    public String getCe_battery() {
        return ce_battery;
    }
 
    public void setCe_battery(String ce_battery) {
        this.ce_battery = ce_battery;
    }
 
    public String getCe_button() {
        return ce_button;
    }
 
    public void setCe_button(String ce_button) {
        this.ce_button = ce_button;
    }
 
    public String getCe_jingzhi() {
        return ce_jingzhi;
    }
 
    public void setCe_jingzhi(String ce_jingzhi) {
        this.ce_jingzhi = ce_jingzhi;
    }
 
    public String getCe_xiumian() {
        return ce_xiumian;
    }
 
    public void setCe_xiumian(String ce_xiumian) {
        this.ce_xiumian = ce_xiumian;
    }
 
    public String getCe_power() {
        return ce_power;
    }
 
    public void setCe_power(String ce_power) {
        this.ce_power = ce_power;
    }
 
    public String getCe_power_diff() {
        return ce_power_diff;
    }
 
    public void setCe_power_diff(String ce_power_diff) {
        this.ce_power_diff = ce_power_diff;
    }
 
    public int getCe_taghz() {
        return ce_taghz;
    }
 
    public void setCe_taghz(int ce_taghz) {
        this.ce_taghz = ce_taghz;
    }
 
    public String getCe_timepian() {
        return ce_timepian;
    }
 
    public void setCe_timepian(String ce_timepian) {
        this.ce_timepian = ce_timepian;
    }
 
    public int getCe_tagheigh() {
        return ce_tagheigh;
    }
 
    public void setCe_tagheigh(int ce_tagheigh) {
        this.ce_tagheigh = ce_tagheigh;
    }
 
}