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,7 +63,17 @@ public class Owner extends Person {
|
||||||
|
|
||||||
public int age;
|
public int age;
|
||||||
|
|
||||||
public int getAge() {
|
public String email;
|
||||||
|
|
||||||
|
public String getEmail() {
|
||||||
|
return email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEmail(String email) {
|
||||||
|
this.email = email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getAge() {
|
||||||
|
|
||||||
return age;
|
return age;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue