parent
ee5faeb2e9
commit
b252ac51fa
@ -0,0 +1,76 @@
|
|||||||
|
package com.javaBean;
|
||||||
|
|
||||||
|
public class Account {
|
||||||
|
String userid;
|
||||||
|
String password;
|
||||||
|
String email;
|
||||||
|
String username;
|
||||||
|
String address;
|
||||||
|
String city;
|
||||||
|
String country;
|
||||||
|
String phonenum;
|
||||||
|
public Account() {
|
||||||
|
|
||||||
|
}
|
||||||
|
public Account (String userid,String password,String email,String username,String address,String city,String country,String phonenum){
|
||||||
|
this.userid=userid;
|
||||||
|
this.password=password;
|
||||||
|
this.email=email;
|
||||||
|
this.username=username;
|
||||||
|
this.address=address;
|
||||||
|
this.city=city;
|
||||||
|
this.country=country;
|
||||||
|
this.phonenum=phonenum;
|
||||||
|
}
|
||||||
|
public String getuserid(){
|
||||||
|
return userid;
|
||||||
|
}
|
||||||
|
public void setuserid(String userid){
|
||||||
|
this.userid=userid;
|
||||||
|
}
|
||||||
|
public String getpassword(){
|
||||||
|
return password;
|
||||||
|
}
|
||||||
|
public void setpassword(String password){
|
||||||
|
this.password=password;
|
||||||
|
}
|
||||||
|
public String getemail(){
|
||||||
|
return email;
|
||||||
|
}
|
||||||
|
public void setemail(String email){
|
||||||
|
this.email=email;
|
||||||
|
}
|
||||||
|
public String getusername(){
|
||||||
|
return username;
|
||||||
|
}
|
||||||
|
public void setusername(String username){
|
||||||
|
this.username=username;
|
||||||
|
}
|
||||||
|
public String getaddress(){
|
||||||
|
return address;
|
||||||
|
}
|
||||||
|
public void setaddress(String address){
|
||||||
|
this.address=address;
|
||||||
|
}
|
||||||
|
public String getcity(){
|
||||||
|
return city;
|
||||||
|
}
|
||||||
|
public void setcity(String city){
|
||||||
|
this.city=city;
|
||||||
|
}
|
||||||
|
public String getcountry(){
|
||||||
|
return country;
|
||||||
|
}
|
||||||
|
public void setcountry(String country){
|
||||||
|
this.country=country;
|
||||||
|
}
|
||||||
|
public String getphonenum(){
|
||||||
|
return phonenum;
|
||||||
|
}
|
||||||
|
public void setphonenum(String phonenum){
|
||||||
|
this.phonenum=phonenum;
|
||||||
|
}
|
||||||
|
public String toString() {
|
||||||
|
return this.userid+":"+this.username;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue