-
Notifications
You must be signed in to change notification settings - Fork 0
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 #5 from KAKAO-TOUR-API-CONTEST/develop
fix : table absorption
- Loading branch information
Showing
10 changed files
with
123 additions
and
10 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -2,5 +2,10 @@ | |
|
||
public class PhotoBookController { | ||
|
||
//공유하기 버튼 누르면 (만료시간이 포함된 링크 생성하기) | ||
|
||
|
||
|
||
|
||
|
||
} |
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
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,76 @@ | ||
package com.example.ai_jeju.domain; | ||
|
||
|
||
import jakarta.persistence.*; | ||
import lombok.*; | ||
|
||
@Table(name="stores") | ||
@NoArgsConstructor(access= AccessLevel.PROTECTED) //기본생성자 | ||
@Getter | ||
@Entity | ||
@AllArgsConstructor // 모든 필드를 초기화하는 생성자 | ||
@Builder // 빌더 패턴 | ||
public class Store { | ||
|
||
@Id | ||
@GeneratedValue(strategy = GenerationType.IDENTITY) | ||
@Column(name = "storeId", updatable = false, unique = true) | ||
private Long storeId; | ||
|
||
@Column(name = "name",updatable = false) | ||
String name; | ||
|
||
//이미지 소스 | ||
@Column(name = "imgSrc",updatable = false) | ||
boolean imgSrc; | ||
|
||
@Column(name = "address",updatable = false) | ||
String address; | ||
|
||
|
||
@Column(name = "mapX",updatable = false) | ||
double mapX; | ||
|
||
@Column(name = "mapY",updatable = false) | ||
double mapY; | ||
|
||
|
||
|
||
|
||
/** | ||
카테고리 value | ||
1 : 숙박 | ||
2 : 음식점 | ||
3 : 레져 | ||
*/ | ||
|
||
//유모차 대여여부 | ||
@Column(name = "stroller",updatable = false) | ||
boolean stroller; | ||
|
||
//유모차 편의성 | ||
@Column(name = "strollerVal",updatable = false) | ||
int strollerVal; | ||
|
||
//아이 스페어 체어 | ||
@Column(name = "babySpareChair",updatable = false) | ||
boolean babySpareChair; | ||
|
||
//아이 놀이방 | ||
@Column(name = "playground",updatable = false) | ||
boolean playground; | ||
|
||
//노키즈존 여부 | ||
@Column(name = "noKidsZone",updatable = false) | ||
boolean noKidsZone; | ||
|
||
@Column(name = "categoryId",updatable = false) | ||
int categoryId; | ||
|
||
@Column(name = "operationTime",updatable = false) | ||
String operationTime; | ||
|
||
@Column(name = "tel",updatable = false) | ||
String tel; | ||
|
||
} |
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.example.ai_jeju.dto; | ||
|
||
import jakarta.persistence.Column; | ||
import jakarta.persistence.GeneratedValue; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class ChildRequest { | ||
|
||
|
||
private String birthDate; | ||
private String childName; | ||
private Boolean gender; | ||
private long childProfile; | ||
} |
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
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
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
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
Empty file.