Ignore:
Timestamp:
02/05/23 17:43:38 (17 months ago)
Author:
Filip Chorbeski <86695898+FilipChorbeski@…>
Branches:
main
Children:
4d78603
Parents:
8ae6217 (diff), d546868 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'main' into adopting-a-pet

File:
1 moved

Legend:

Unmodified
Added
Removed
  • Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Pet.java

    r8ae6217 re294983  
    1 package finki.paw5.model;
     1package finki.paw5.model.entities;
    22
    33import finki.paw5.model.enumerations.AgeGroup;
     
    55import finki.paw5.model.enumerations.Size;
    66import finki.paw5.model.enumerations.Species;
    7 import jakarta.persistence.Column;
    8 import jakarta.persistence.Entity;
    9 import jakarta.persistence.Id;
    10 import jakarta.persistence.Table;
     7import jakarta.persistence.*;
    118import lombok.Data;
    129
     
    1714
    1815    @Id
     16    @GeneratedValue(strategy = GenerationType.IDENTITY)
    1917    @Column(name = "id_pet")
    20     private int id;
     18    private Integer id;
    2119
    2220    @Column(name = "url_pet_image", length = 200)
Note: See TracChangeset for help on using the changeset viewer.