toggle menu
restaurant_information_system
1.0-SNAPSHOT
jvm
switch theme
search in API
restaurant_information_system
/
org.example.data.dto.store
Package-level
declarations
Types
Types
Food
Type
Link copied to clipboard
enum
FoodType
:
Enum
<
FoodType
>
음식 종류를 나타내는 Enum 클래스
Location
Link copied to clipboard
enum
Location
:
Enum
<
Location
>
Store
DTO
Link copied to clipboard
open
class
StoreDTO
Store
Header
Dto
Link copied to clipboard
data
class
StoreHeaderDto
(
val
id
:
Long
,
val
name
:
String
,
val
image
:
String
,
val
location
:
String
,
val
category
:
FoodType
,
val
businessHour
:
String
,
var
description
:
String
)
Store
Request
Dto
Link copied to clipboard
data
class
StoreRequestDto
(
val
name
:
String
,
val
callNumber
:
String
,
val
image
:
String
,
val
location
:
String
,
val
category
:
FoodType
,
val
businessHour
:
String
,
val
description
:
String
,
val
latitude
:
Double
,
val
longitude
:
Double
)
가게 등록 요청 DTO
Store
Response
Dto
Link copied to clipboard
data
class
StoreResponseDto
(
val
id
:
Long
,
val
name
:
String
,
val
callNumber
:
String
,
val
image
:
String
,
val
location
:
String
,
val
category
:
FoodType
,
val
businessHour
:
String
,
val
description
:
String
,
val
latitude
:
Double
,
val
longitude
:
Double
,
val
adminId
:
Long
)
가게 정보를 나타내는 DTO 클래스