-
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.
* feat: 구독 관리를 위한 send_time, send_day 컬럼 추가 * feat: workbook 제목 조회 쿼리 추가 * feat: 구독 전송 상태 조회 쿼리 추가 * feat: selectAllWorkbookInActiveSubscriptionStatusQuery progress에 따른 정렬 조건 추가 * feat: workbook 제목 조회 서비스 구현 * refactor: SUBSCRIBE_WORKBOOK_STRATEGY에 따라 workbook 구독 정보 조회할 수 있도록 수정 * feat: DayCode webConfig에 등록 * feat: myPage ViewCategory 추가 * refactor: /subscriptions/workbooks view에 따른 구분 및 /subscriptions/workbooks/main 삭제
- Loading branch information
1 parent
48aed88
commit be5d051
Showing
24 changed files
with
779 additions
and
241 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
6 changes: 6 additions & 0 deletions
6
...in/kotlin/com/few/api/repo/dao/subscription/query/SelectAllSubscriptionSendStatusQuery.kt
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,6 @@ | ||
package com.few.api.repo.dao.subscription.query | ||
|
||
data class SelectAllSubscriptionSendStatusQuery( | ||
val memberId: Long, | ||
val workbookIds: List<Long>, | ||
) |
9 changes: 9 additions & 0 deletions
9
.../src/main/kotlin/com/few/api/repo/dao/subscription/record/SubscriptionSendStatusRecord.kt
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,9 @@ | ||
package com.few.api.repo.dao.subscription.record | ||
|
||
import java.time.LocalTime | ||
|
||
data class SubscriptionSendStatusRecord( | ||
val workbookId: Long, | ||
val sendTime: LocalTime, | ||
val sendDay: String, | ||
) |
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
api-repo/src/main/kotlin/com/few/api/repo/dao/workbook/query/SelectAllWorkbookTitleQuery.kt
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.few.api.repo.dao.workbook.query | ||
|
||
data class SelectAllWorkbookTitleQuery( | ||
val workbookIds: List<Long>, | ||
) |
6 changes: 6 additions & 0 deletions
6
api-repo/src/main/kotlin/com/few/api/repo/dao/workbook/record/WorkbookTitleRecord.kt
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,6 @@ | ||
package com.few.api.repo.dao.workbook.record | ||
|
||
data class WorkbookTitleRecord( | ||
val workbookId: Long, | ||
val title: String, | ||
) |
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
5 changes: 5 additions & 0 deletions
5
api/src/main/kotlin/com/few/api/domain/subscription/service/dto/ReadAllWorkbookTitleInDto.kt
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.few.api.domain.subscription.service.dto | ||
|
||
data class ReadAllWorkbookTitleInDto( | ||
val workbookIds: List<Long>, | ||
) |
Oops, something went wrong.