mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-29 10:25:48 +00:00
Delete annotation making build fail
Just to have a build sucess
This commit is contained in:
parent
e43d94a41b
commit
cc1dcbea02
1 changed files with 0 additions and 4 deletions
|
@ -47,16 +47,12 @@ import org.springframework.samples.petclinic.model.Person;
|
||||||
public class Owner extends Person {
|
public class Owner extends Person {
|
||||||
|
|
||||||
@Column(name = "address")
|
@Column(name = "address")
|
||||||
@NotEmpty
|
|
||||||
private String address;
|
private String address;
|
||||||
|
|
||||||
@Column(name = "city")
|
@Column(name = "city")
|
||||||
@NotEmpty
|
|
||||||
private String city;
|
private String city;
|
||||||
|
|
||||||
@Column(name = "telephone")
|
@Column(name = "telephone")
|
||||||
@NotEmpty
|
|
||||||
@Digits(fraction = 0, integer = 10)
|
|
||||||
private String telephone;
|
private String telephone;
|
||||||
|
|
||||||
@OneToMany(cascade = CascadeType.ALL, mappedBy = "owner")
|
@OneToMany(cascade = CascadeType.ALL, mappedBy = "owner")
|
||||||
|
|
Loading…
Reference in a new issue