Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/Schedule-scenarios' into Schedul…
Browse files Browse the repository at this point in the history
…e-scenarios

# Conflicts:
#	src/main/java/cat/udl/eps/softarch/demo/domain/Schedule.java
  • Loading branch information
pautorne committed Apr 4, 2024
2 parents 6f650fb + e6ed2f7 commit ce12c36
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/main/java/cat/udl/eps/softarch/demo/domain/Schedule.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import lombok.Data;
import lombok.EqualsAndHashCode;

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

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

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

@NotNull
private ZonedDateTime startTime;
private String startTime;

@NotNull
private ZonedDateTime endTime;
private String endTime;

@ManyToOne
//@NotNull
Expand Down

0 comments on commit ce12c36

Please sign in to comment.