parent
0c658a48dc
commit
8e6cc7f297
@ -0,0 +1,56 @@
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue