source: Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Therapy.java@ 8b7dd7f

main
Last change on this file since 8b7dd7f was ada7108, checked in by Filip Chorbeski <86695898+FilipChorbeski@…>, 17 months ago

change ids from int to Integer

Co-Authored-By: SazdovaEkaterina <74919977+SazdovaEkaterina@…>

  • Property mode set to 100644
File size: 791 bytes
RevLine 
[3d3e59d]1package finki.paw5.model.entities;
[d427a07]2
[038c9f7]3import jakarta.persistence.*;
[d427a07]4import lombok.Data;
5
[fdfc6fa]6import java.time.LocalDate;
[d427a07]7import java.util.Date;
8
9@Data
10@Entity
11@Table(name = "therapy")
12public class Therapy {
13
14 @Id
[038c9f7]15 @GeneratedValue(strategy = GenerationType.IDENTITY)
[d427a07]16 @Column(name = "id_therapy")
[ada7108]17 private Integer id;
[d427a07]18
19 @Column(name = "health_problem", nullable = false, length = 100)
20 private String healthProblem;
21
22 @Column(name = "start_date")
[fdfc6fa]23 private LocalDate startDate;
[d427a07]24
25 @Column(name = "end_date")
[fdfc6fa]26 private LocalDate endDate;
[d427a07]27
[fdfc6fa]28 public Therapy(String healthProblem, LocalDate startDate, LocalDate endDate) {
[d427a07]29 this.healthProblem = healthProblem;
30 this.startDate = startDate;
31 this.endDate = endDate;
32 }
33
34 public Therapy() {
35 }
36}
Note: See TracBrowser for help on using the repository browser.