15832144755
2021-11-18 37336922a1df99ac1636e398e12e64dedfba10e5
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
package com.hxzkoa.udp;
import java.util.Vector;
/**标签和基站的测距数据原始数据*/
public class Tag_Ceju_hex {
    //标签属性标签id
    String tagid;
    //初始包序
    int first_baoxu;
    //将要处理的包序
    int dell_baoxu;
    //上一包的包序
    int last_baoxu;
 
    Vector<Ceju> ceju;
 
    public String getTagid() {
        return tagid;
    }
 
    public int getFirst_baoxu() {
        return first_baoxu;
    }
    
    /**获取将要处理的包序*/
    public int getDell_baoxu() {
        return dell_baoxu;
    }
 
    public Vector<Ceju> getCeju() {
        return ceju;
    }
 
    public void setTagid(String tagid) {
        this.tagid = tagid;
    }
 
    public void setFirst_baoxu(int first_baoxu) {
        this.first_baoxu = first_baoxu;
    }
    /**设置将要处理的包序*/
    public void setDell_baoxu(int dell_baoxu) {
        this.dell_baoxu = dell_baoxu;
    }
 
    public void setCeju(Vector<Ceju> ceju) {
        this.ceju = ceju;
    }
 
    public int getLast_baoxu() {
        return last_baoxu;
    }
 
    public void setLast_baoxu(int last_baoxu) {
        this.last_baoxu = last_baoxu;
    }
 
 
}