source: Prototype Application/Paw5/src/main/java/finki/paw5/model/Therapy.java@ 038c9f7

main
Last change on this file since 038c9f7 was 038c9f7, checked in by SazdovaEkaterina <sazdovaekaterina@…>, 17 months ago

add @GeneratedValue to ids

  • Property mode set to 100644
File size: 778 bytes
RevLine 
[d427a07]1package finki.paw5.model;
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")
17 private int id;
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.