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.
76 lines
1.7 KiB
76 lines
1.7 KiB
package com.jwz.javaBean;
|
|
|
|
public class Accountjwz {
|
|
String useridjwz;
|
|
String passwordjwz;
|
|
String emailjwz;
|
|
String usernamejwz;
|
|
String addressjwz;
|
|
String cityjwz;
|
|
String countryjwz;
|
|
String phonenumjwz;
|
|
public Accountjwz() {
|
|
}
|
|
public Accountjwz (String useridjwz,String passwordjwz,String emailjwz,String usernamejwz,String addressjwz,String cityjwz,String countryjwz,String phonenumjwz){
|
|
this.useridjwz=useridjwz;
|
|
this.passwordjwz=passwordjwz;
|
|
this.emailjwz=emailjwz;
|
|
this.usernamejwz=usernamejwz;
|
|
this.addressjwz=addressjwz;
|
|
this.cityjwz=cityjwz;
|
|
this.countryjwz=countryjwz;
|
|
this.phonenumjwz=phonenumjwz;
|
|
}
|
|
public String getuseridjwz(){
|
|
return useridjwz;
|
|
}
|
|
public void setuseridjwz(String useridjwz){
|
|
this.useridjwz=useridjwz;
|
|
}
|
|
public String getpasswordjwz(){
|
|
return passwordjwz;
|
|
}
|
|
public void setpasswordjwz(String passwordjwz){
|
|
this.passwordjwz=passwordjwz;
|
|
}
|
|
public String getemailjwz(){
|
|
return emailjwz;
|
|
}
|
|
public void setemailjwz(String emailjwz){
|
|
this.emailjwz=emailjwz;
|
|
}
|
|
public String getusernamejwz(){
|
|
return usernamejwz;
|
|
}
|
|
public void setusernamejwz(String usernamejwz){
|
|
this.usernamejwz=usernamejwz;
|
|
}
|
|
public String getaddressjwz(){
|
|
return addressjwz;
|
|
}
|
|
public void setaddressjwz(String addressjwz){
|
|
this.addressjwz=addressjwz;
|
|
}
|
|
public String getcityjwz(){
|
|
return cityjwz;
|
|
}
|
|
public void setcityjwz(String cityjwz){
|
|
this.cityjwz=cityjwz;
|
|
}
|
|
public String getcountryjwz(){
|
|
return countryjwz;
|
|
}
|
|
public void setcountryjwz(String countryjwz){
|
|
this.countryjwz=countryjwz;
|
|
}
|
|
public String getphonenumjwz(){
|
|
return phonenumjwz;
|
|
}
|
|
public void setphonenumjwz(String phonenumjwz){
|
|
this.phonenumjwz=phonenumjwz;
|
|
}
|
|
public String toString() {
|
|
return this.usernamejwz+"来自"+this.addressjwz;
|
|
}
|
|
}
|