-
Notifications
You must be signed in to change notification settings - Fork 1
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 #81 from Cafegory/feature-80
[BUILD SUCCESS] 카공 모집글 조회 응답바디에 카공 모집글 작성자 id 추가 및 공통으로 쓰던 카공 관련 dto 분리
- Loading branch information
Showing
10 changed files
with
183 additions
and
53 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
22 changes: 22 additions & 0 deletions
22
src/main/java/com/example/demo/dto/study/StudyOnceCreateResponse.java
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,22 @@ | ||
package com.example.demo.dto.study; | ||
|
||
import java.time.LocalDateTime; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Builder | ||
@Data | ||
public class StudyOnceCreateResponse { | ||
private long cafeId; | ||
private String area; | ||
private long studyOnceId; | ||
private String name; | ||
private LocalDateTime startDateTime; | ||
private LocalDateTime endDateTime; | ||
private int maxMemberCount; | ||
private int nowMemberCount; | ||
private boolean canTalk; | ||
private boolean canJoin; | ||
private boolean isEnd; | ||
} |
22 changes: 22 additions & 0 deletions
22
src/main/java/com/example/demo/dto/study/StudyOnceInfoResponse.java
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,22 @@ | ||
package com.example.demo.dto.study; | ||
|
||
import java.time.LocalDateTime; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Builder | ||
@Data | ||
public class StudyOnceInfoResponse { | ||
private long cafeId; | ||
private String area; | ||
private long studyOnceId; | ||
private String name; | ||
private LocalDateTime startDateTime; | ||
private LocalDateTime endDateTime; | ||
private int maxMemberCount; | ||
private int nowMemberCount; | ||
private boolean canTalk; | ||
private boolean canJoin; | ||
private boolean isEnd; | ||
} |
22 changes: 22 additions & 0 deletions
22
src/main/java/com/example/demo/dto/study/StudyOnceSearchListResponse.java
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,22 @@ | ||
package com.example.demo.dto.study; | ||
|
||
import java.time.LocalDateTime; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Builder | ||
@Data | ||
public class StudyOnceSearchListResponse { | ||
private long cafeId; | ||
private String area; | ||
private long studyOnceId; | ||
private String name; | ||
private LocalDateTime startDateTime; | ||
private LocalDateTime endDateTime; | ||
private int maxMemberCount; | ||
private int nowMemberCount; | ||
private boolean canTalk; | ||
private boolean canJoin; | ||
private boolean isEnd; | ||
} |
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
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
Oops, something went wrong.