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 f4c58d7 commit d17ac7aCopy full SHA for d17ac7a
src/main/java/hexlet/code/model/Label.java
@@ -30,6 +30,7 @@ public class Label {
30
31
@Id
32
@GeneratedValue(strategy = GenerationType.IDENTITY)
33
+ @EqualsAndHashCode.Include
34
private Long id;
35
36
@NotBlank
@@ -40,7 +41,6 @@ public class Label {
40
41
42
@CreatedDate
43
@Column(nullable = false, updatable = false)
- @EqualsAndHashCode.Include
44
private LocalDate createdAt;
45
46
//разные метки назначены разным задачам (полагаю метки уникальные)
0 commit comments