Skip to content

Commit

Permalink
Merge pull request #99 from UdL-EPS-SoftArch/crud-Pet
Browse files Browse the repository at this point in the history
Added img parameter to pet
  • Loading branch information
rogargon authored May 16, 2024
2 parents 96ce1fc + d2cbf8d commit 91827fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EntitiesModel.puml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Pet {
age: String
description: String
breed: String

img: String
}

class Shelter {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/cat/udl/eps/softarch/demo/domain/Pet.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Pet extends UriEntity<Long> {
String age;
String description;
String breed;

String img;

@ManyToOne
public Shelter isIn;
Expand Down

0 comments on commit 91827fc

Please sign in to comment.