mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 14:55:51 +00:00
풀 리퀘스트 요청
This commit is contained in:
parent
08e80e362b
commit
f20ca4ca90
1 changed files with 11 additions and 1 deletions
|
@ -63,6 +63,16 @@ public class Owner extends Person {
|
|||
|
||||
public int age;
|
||||
|
||||
public String email;
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public int getAge() {
|
||||
|
||||
return age;
|
||||
|
|
Loading…
Reference in a new issue