We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d56afd commit 8524131Copy full SHA for 8524131
src/main/java/dcom/homepage/api/domain/study/Study.java
@@ -2,6 +2,7 @@
2
3
import com.fasterxml.jackson.annotation.JsonIgnore;
4
import dcom.homepage.api.domain.users.User;
5
+import io.swagger.models.auth.In;
6
import lombok.*;
7
import org.springframework.data.annotation.CreatedDate;
8
import org.springframework.data.annotation.LastModifiedDate;
@@ -41,6 +42,15 @@ public class Study {
41
42
@Column(nullable = false)
43
private Date endDate;
44
45
+ @Column(nullable = false)
46
+ private Date vacationStartDate;
47
+
48
49
+ private Date vacationEndDate;
50
51
+ @Column(nullable = true)
52
+ private Integer cycle;
53
54
@ManyToOne
55
private User owner;
56
0 commit comments