-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCakeSelectedMapDto.java
More file actions
31 lines (28 loc) Β· 939 Bytes
/
CakeSelectedMapDto.java
File metadata and controls
31 lines (28 loc) Β· 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.cakey.cake.dto;
import com.cakey.store.domain.Station;
import com.querydsl.core.annotations.QueryProjection;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class CakeSelectedMapDto {
private final Long storeId;
private final String storeName;
private final String address;
private final Station station;
private final Boolean isLiked;
private final String imageUrl;
@QueryProjection
public CakeSelectedMapDto(final Long storeId,
final String storeName, final String address,
final Station station,
final Boolean isLiked,
final String imageUrl) {
this.storeId = storeId;
this.storeName = storeName;
this.address = address;
this.station = station;
this.isLiked = isLiked;
this.imageUrl = imageUrl;
}
}