-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from marinesnow34/test
Config: 가게 이미지 Enum 추가
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
src/main/java/com/readyvery/readyverydemo/domain/ImgSize.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.readyvery.readyverydemo.domain; | ||
|
||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
@Getter | ||
@RequiredArgsConstructor | ||
public enum ImgSize { | ||
EVENT_BANNER(), // 이벤트 배너 | ||
VERY_PICK_CAFE_BANNER(), // 카페 리스트 배너 | ||
CAFE_LOGO(), // 카페 로고 | ||
PICKUP_PROMOTION(), // 픽업 홍보 포스터 | ||
CAFE_BANNER(), // 카페 상세 배너 | ||
FOODY(), // 음료 사진 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,4 +33,6 @@ public class StoreImg { | |
private Store store; | ||
|
||
private String imgUrl; | ||
|
||
private ImgSize imgSize; | ||
} |