Skip to content

Commit e8b84ee

Browse files
authored
Merge pull request #260 from GTable/refoctor#250-admin-menuName
refactor(Menu): 소문자로 변경
2 parents 0953cbf + 10a37e5 commit e8b84ee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • nowait-domain/domain-core-rdb/src/main/java/com/nowait/domaincorerdb/menu/entity

nowait-domain/domain-core-rdb/src/main/java/com/nowait/domaincorerdb/menu/entity/Menu.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class Menu extends BaseTimeEntity {
2626

2727
@Id
2828
@GeneratedValue(strategy = GenerationType.IDENTITY)
29-
private Long Id;
29+
private Long id;
3030

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

5353
public Menu(LocalDateTime createdAt, Long id, Long storeId, String adminDisplayName, String name, String description, Integer price, Boolean isSoldOut, Boolean deleted) {
5454
super(createdAt);
55-
this.Id = id;
55+
this.id = id;
5656
this.storeId = storeId;
5757
this.adminDisplayName = adminDisplayName;
5858
this.name = name;

0 commit comments

Comments
 (0)