-
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.
* refactor: 멤버 호출 로직 리팩토링 (#14) * feat: 주최내역 - 신청목록 조회 api 구현 (#14) * feat: 주최내역 - 신청목록 조회 api memberId 추가 (#14) * feat: 주최내역 - 신청목록 수락/거절 api 구현 (#14) * feat: 주최 엔티티 상시 항목 추가 (#14) * refactor: 필요없는 디버그 삭제 (#14)
- Loading branch information
Showing
5 changed files
with
33 additions
and
13 deletions.
There are no files selected for viewing
24 changes: 14 additions & 10 deletions
24
src/main/java/com/onna/onnaback/domain/spark/adapter/in/web/request/HostDto.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 |
---|---|---|
@@ -1,29 +1,33 @@ | ||
package com.onna.onnaback.domain.spark.adapter.in.web.request; | ||
|
||
import com.onna.onnaback.domain.spark.domain.Always; | ||
import com.onna.onnaback.domain.spark.domain.DurationHour; | ||
import com.onna.onnaback.domain.spark.domain.SparkType; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class HostDto { | ||
|
||
private Long hostId; | ||
Long hostId; | ||
|
||
Long placeId; | ||
|
||
private Long placeId; | ||
String title; | ||
|
||
private String title; | ||
String description; | ||
|
||
private String description; | ||
SparkType type; | ||
|
||
private SparkType type; | ||
Always always; // 상시, 상시x | ||
|
||
private String sparkDate; | ||
String sparkDate; // 주최 일시 | ||
|
||
private Long price; | ||
Long price; | ||
|
||
private Long capacity; | ||
Long capacity; | ||
|
||
private DurationHour durationHour; | ||
DurationHour durationHour; | ||
|
||
private String hostDetail; | ||
String hostDetail; | ||
} |
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
5 changes: 5 additions & 0 deletions
5
src/main/java/com/onna/onnaback/domain/spark/domain/Always.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,5 @@ | ||
package com.onna.onnaback.domain.spark.domain; | ||
|
||
public enum Always { | ||
ALWAYS, NOT_ALWAYS | ||
} |
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