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.
wuziqi01/Accountly.java

57 lines
1.7 KiB

package JavaBean;
public class Accountly {
private String useridly;
private String passwordly;
private String emallly;
private String namely;
private String countryly;
private String phonely;
public Accountly(){}
Accountly(String useridly, String passwordly, String emallly, String namely, String addrly, String countryly, String phonely){
this.countryly=countryly;
this.emallly=emallly;
this.namely=namely;
this.passwordly=passwordly;
this.phonely=phonely;
this.useridly=useridly;
}
public String getUseridly(){
return useridly;
}
public void setUseridly(String useridly) {
this.useridly = useridly;
}
public String getPasswordly(){
return passwordly;
}
public void setPasswordly(String passwordly){
this.passwordly=passwordly;
}
public String getNamely(){
return namely;
}
public void setNamely(String namely){
this.namely=namely;
}
public String getEmallly(){
return emallly;
}
public void setEmallly(String emallly){
this.emallly=emallly;
}
public String getCountryly(){
return countryly;
}
public void setCountryly(String countryly){
this.countryly=countryly;
}
public String getPhonely(){
return phonely;
}
public void setPhonely(String phonely){
this.phonely=phonely;
}
}