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.
57 lines
1.7 KiB
57 lines
1.7 KiB
package JavaBean;
|
|
public class Accountcxs {
|
|
|
|
private String useridcxs;
|
|
private String passwordcxs;
|
|
private String emallcxs;
|
|
private String namecxs;
|
|
private String countrycxs;
|
|
private String phonecxs;
|
|
public Accountcxs(){}
|
|
Accountcxs(String useridcxs, String passwordcxs, String emallcxs, String namecxs, String addrcxs, String countrycxs, String phonecxs){
|
|
this.countrycxs=countrycxs;
|
|
this.emallcxs=emallcxs;
|
|
this.namecxs=namecxs;
|
|
this.passwordcxs=passwordcxs;
|
|
this.phonecxs=phonecxs;
|
|
this.useridcxs=useridcxs;
|
|
}
|
|
public String getUseridcxs(){
|
|
return useridcxs;
|
|
}
|
|
public void setUseridcxs(String useridcxs) {
|
|
this.useridcxs = useridcxs;
|
|
}
|
|
public String getPasswordcxs(){
|
|
return passwordcxs;
|
|
}
|
|
public void setPasswordcxs(String passwordcxs){
|
|
this.passwordcxs=passwordcxs;
|
|
}
|
|
public String getNamecxs(){
|
|
return namecxs;
|
|
}
|
|
public void setNamecxs(String namecxs){
|
|
this.namecxs=namecxs;
|
|
}
|
|
public String getEmallcxs(){
|
|
return emallcxs;
|
|
}
|
|
public void setEmallcxs(String emallcxs){
|
|
this.emallcxs=emallcxs;
|
|
}
|
|
public String getCountrycxs(){
|
|
return countrycxs;
|
|
}
|
|
public void setCountrycxs(String countrycxs){
|
|
this.countrycxs=countrycxs;
|
|
}
|
|
public String getPhonecxs(){
|
|
return phonecxs;
|
|
}
|
|
public void setPhonecxs(String phonecxs){
|
|
this.phonecxs=phonecxs;
|
|
}
|
|
|
|
}
|