Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions src/main/java/com/grabpt/dto/response/MyRequestListDTO.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@

import lombok.Builder;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class MyRequestListDTO {
private Long requestId;
private Long requestionId;
private String profileImageURL;
private Long userId;
private List<String> availableDays;
Expand All @@ -27,10 +29,6 @@ public class MyRequestListDTO {
private Long proId;
private boolean isWriteReview;

public void setProNickname(String proNickname) {
this.proNickname = proNickname;
}

public void setProProfileId(Long proId) {
this.proId = proId;
}
Expand Down Expand Up @@ -58,7 +56,7 @@ public static AddressDTO from(Address address) {
}

public MyRequestListDTO(Requestions requestion) {
this.requestId = requestion.getId();
this.requestionId = requestion.getId();
this.profileImageURL = requestion.getUser().getProfileImageUrl();
this.userId = requestion.getUser().getId();
Address addresses = requestion.getUser().getAddress();
Expand Down
Loading