Skip to content

Commit

Permalink
merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pautorne committed Apr 4, 2024
1 parent ce12c36 commit dfb064c
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/main/java/cat/udl/eps/softarch/demo/domain/Schedule.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import lombok.EqualsAndHashCode;

import java.sql.Time;
import java.time.ZonedDateTime;

@Entity
@Data
Expand All @@ -16,17 +17,13 @@ public class Schedule {

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
<<<<<<<<< Temporary merge branch 1
private int Id;
=========
private long Id;
>>>>>>>>> Temporary merge branch 2

@NotNull
private String startTime;
private ZonedDateTime startTime;

@NotNull
private String endTime;
private ZonedDateTime endTime;

@ManyToOne
//@NotNull
Expand Down

0 comments on commit dfb064c

Please sign in to comment.