Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Menu extends BaseTimeEntity {

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long Id;
private Long id;

@Column(nullable = false)
private Long storeId;
Expand All @@ -52,7 +52,7 @@ public class Menu extends BaseTimeEntity {

public Menu(LocalDateTime createdAt, Long id, Long storeId, String adminDisplayName, String name, String description, Integer price, Boolean isSoldOut, Boolean deleted) {
super(createdAt);
this.Id = id;
this.id = id;
this.storeId = storeId;
this.adminDisplayName = adminDisplayName;
this.name = name;
Expand Down