Skip to content

Commit

Permalink
Merge pull request #46 from marinesnow34/test
Browse files Browse the repository at this point in the history
Config: 가게 이미지 Enum 추가
  • Loading branch information
marinesnow34 authored Nov 21, 2023
2 parents b0b7b1f + 6527c90 commit 2eb9ef6
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 2eb9ef6

Please sign in to comment.