You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.1 KiB
59 lines
1.1 KiB
package JavaBean;
|
|
|
|
public class zhanjicxs {
|
|
String id;
|
|
String userid;
|
|
String shenglu;
|
|
String stiuation;
|
|
int time;
|
|
|
|
public zhanjicxs(String id, String userid, String shenglu, String stiuation, int time) {
|
|
this.id = id;
|
|
this.userid = userid;
|
|
this.shenglu = shenglu;
|
|
this.stiuation = stiuation;
|
|
this.time = time;
|
|
}
|
|
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getUserid() {
|
|
return userid;
|
|
}
|
|
|
|
public void setUserid(String userid) {
|
|
this.userid = userid;
|
|
}
|
|
|
|
public String getShenglu() {
|
|
return shenglu;
|
|
}
|
|
|
|
public void setShenglu(String shenglu) {
|
|
this.shenglu = shenglu;
|
|
}
|
|
|
|
public String getStiuation() {
|
|
return stiuation;
|
|
}
|
|
|
|
public void setStiuation(String stiuation) {
|
|
this.stiuation = stiuation;
|
|
}
|
|
|
|
public int getTime() {
|
|
return time;
|
|
}
|
|
|
|
public void setTime(int time) {
|
|
this.time = time;
|
|
}
|
|
}
|