Skip to content

Instantly share code, notes, and snippets.

@jiyeonseo
Last active December 22, 2015 15:28
Show Gist options
  • Save jiyeonseo/6492242 to your computer and use it in GitHub Desktop.
Save jiyeonseo/6492242 to your computer and use it in GitHub Desktop.
package springbook.user.domain;
public class User {
String id;
String name;
String password;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment