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
package tbDataModel;
/**ͬ²½ÉèÖÃ*/
public class Tb_tongbuanchor {
    String anchorid;
    String rootanchorid;
    String type;
    String state;
    String addtime;
    
    /** »ùÕ¾ID */
    public String getAnchorid() {
        return anchorid;
    }
    
    /** Í¬²½»ùÕ¾ */
    public String getRootanchorid() {
        return rootanchorid;
    }
    
    /** »ùÕ¾ÀàÐÍ */
    public String getType() {
        return type;
    }
    
    /** Í¬²½×´Ì¬ */
    public String getState() {
        return state;
    }
    
    /** Ìí¼Óʱ¼ä */
    public String getAddtime() {
        return addtime;
    }
    public void setAnchorid(String anchorid) {
        this.anchorid = anchorid;
    }
    public void setRootanchorid(String rootanchorid) {
        this.rootanchorid = rootanchorid;
    }
    public void setType(String type) {
        this.type = type;
    }
    /** Í¬²½×´Ì¬ */
    public void setState(String state) {
        this.state = state;
    }
    public void setAddtime(String addtime) {
        this.addtime = addtime;
    }
 
}