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;
|
}
|
|
|
}
|