graph TD

Store--> storeId

Store--> StoreInfo

Store--> Owner

StoreInfo

가게 정보

classDiagram
    class StoreInfo {
        - String storeName // 가게 이름
        - Point2D.Double location // 장소
        - String desciption // 가게 설명
        - String headImageUrl // 가게 대표 이미지
    }