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.
localhost9000/Accountzzy.java

54 lines
1.0 KiB

package com.zzy.domain;
public class Accountzzy{
private String userid;
private String username;
private String password;
private String address;
private String phone;
public void setUserid(String userid) {
this.userid = userid;
}
public void setUsername(String username) {
this.username = username;
}
public void setPassword(String password) {
this.password = password;
}
public void setAddress(String address) {
this.address = address;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getUserid() {
return userid;
}
public String getUsername() {
return username;
}
public String getPassword() {
return password;
}
public String getAddress() {
return address;
}
public String getPhone() {
return phone;
}
public void add(Accountzzy account1) {
}
}