ADD file via upload

main
nxist2202005093 1 year ago
parent 07e5dc9165
commit 2b49211d9f

@ -0,0 +1,56 @@
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;
}
}
Loading…
Cancel
Save