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
package tbDataModel;
 
public class tbachorwarning implements java.io.Serializable {// »ùվ״̬Àà
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    private int id;//»ùÕ¾ÐòºÅ
    private  String OFFANCH;//»ùվ״̬£¬»ùվ״̬Ö÷ÒªÓÉÔÚÏߺÍÀëÏßÁ½ÖÖ״̬
    private  String anchorid;//»ùÕ¾id
    public tbachorwarning() {// È±Ê¡¹¹Ô캯Êý
    }
 
    public tbachorwarning(int id) {// ×îС¹¹Ô캯Êý(Ö÷¼ü)
        this.id = id;
    }
    public tbachorwarning(int id,String OFFANCH,String anchorid) {// ÍêÕû¹¹Ô캯Êý
        this.id = id;
        this.OFFANCH = OFFANCH;
        this.anchorid= anchorid;
        
    }
    
    // Ê¹ÓÃGetters and Setters·½·¨½«»ùվ״̬˽ÓÐÊôÐÔ·â×°ÆðÀ´
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getOFFANCH() {
        return OFFANCH;
    }
 
    public void setOFFANCH(String oFFANCH) {
        OFFANCH = oFFANCH;
    }
 
    public String getAnchorid() {
        return anchorid;
    }
 
    public void setAnchorid(String anchorid) {
        this.anchorid = anchorid;
    }
    
 
}