Skip to content

Commit

Permalink
📝chore(#5) : edit Food
Browse files Browse the repository at this point in the history
  • Loading branch information
2ghrms committed Nov 1, 2024
1 parent 0930fd6 commit 0661b35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spring/src/main/java/umc/spring/domain/Food.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import jakarta.persistence.*;
import lombok.*;
import umc.spring.domain.common.BaseEntity;
import umc.spring.domain.enums.FoodCategory;
import umc.spring.domain.mapping.MemberMission;
import umc.spring.domain.mapping.MemberPreferFood;

Expand All @@ -22,7 +23,7 @@ public class Food extends BaseEntity {

@Enumerated(EnumType.STRING)
@Column(columnDefinition = "VARCHAR(20)")
private umc.spring.domain.enums.FoodCategory foodCategory;
private FoodCategory foodCategory;

@Column(nullable = false)
private Boolean preferOptional;
Expand Down

0 comments on commit 0661b35

Please sign in to comment.