Skip to content

Commit

Permalink
Config: 가게 이미지 Enum 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
marinesnow34 committed Nov 21, 2023
1 parent a2fd535 commit 6527c90
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/main/java/com/readyvery/readyverydemo/domain/ImgSize.java
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(), // 음료 사진
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ public class StoreImg {
private Store store;

private String imgUrl;

private ImgSize imgSize;
}

0 comments on commit 6527c90

Please sign in to comment.