zsh_root
2024-01-02 7b595546af704983dbafcd0d385c8768ddacefc2
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 Tag_Ceju;
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;
    }
 
 
}