Skip to content

Commit

Permalink
chore: (#281) 단일 인자 Response Application → Presentation
Browse files Browse the repository at this point in the history
  • Loading branch information
khcho0125 committed Jan 11, 2023
1 parent dcf74e4 commit 3d8b721
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 23 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
package team.comit.simtong.domain.team.dto
package team.comit.simtong.domain.common.dto.response

import java.util.UUID

/**
*
* 팀 리스트를 전송하는 QueryTeamsResponse
* 팀 리스트를 전송하는 QueryTeamsWebResponse
*
* @author kimbeomjin
* @author Chokyunghyeon
* @date 2022/12/20
* @version 1.0.0
* @version 1.2.5
**/
data class QueryTeamsResponse(
data class QueryTeamsWebResponse(
val teamList: List<TeamElement>
) {
data class TeamElement(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package team.comit.simtong.domain.spot.dto
package team.comit.simtong.domain.common.dto.response

import java.util.UUID

/**
*
* 지점 리스트를 전송하는 SpotResponse
* 지점 리스트를 전송하는 SpotWebResponse
*
* @author Chokyunghyeon
* @date 2022/10/18
* @version 1.0.0
* @version 1.2.5
**/
data class SpotResponse(
data class SpotWebResponse(
val spotList: List<SpotElement>
) {
data class SpotElement (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.holiday.dto
package team.comit.simtong.domain.holiday.dto.response

import team.comit.simtong.domain.holiday.model.value.HolidayType
import java.time.LocalDate
Expand All @@ -9,10 +9,11 @@ import java.util.UUID
* 지점 직원의 휴무일을 반환하는 QueryEmployeeHolidayResponse
*
* @author kimbeomjin
* @author Chokyunghyeon
* @date 2022/12/22
* @version 1.0.0
* @version 1.2.5
**/
data class QueryEmployeeHolidayResponse(
data class QueryEmployeeHolidayWebResponse(
val holidays: List<Holiday>
) {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
package team.comit.simtong.domain.menu.dto
package team.comit.simtong.domain.menu.dto.response

import java.time.LocalDate

/**
*
* 메뉴를 반환하는 MenuResponse
* 메뉴를 반환하는 MenuWebResponse
*
* @author kimbeomjin
* @author Chokyunghyeon
* @date 2022/09/26
* @version 1.0.0
* @version 1.2.5
**/
data class MenuResponse(
data class MenuWebResponse(
val menu: List<MenuElement>
) {
data class MenuElement(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
package team.comit.simtong.domain.schedule.dto
package team.comit.simtong.domain.schedule.dto.response

import java.time.LocalDate
import java.util.UUID

/**
*
* 모든 지점 일정 조회 정보를 전송하는 QueryEntireSpotScheduleResponse
* 모든 지점 일정 조회 정보를 전송하는 QueryEntireSpotScheduleWebResponse
*
* @author Chokyunghyeon
* @date 2022/11/26
* @version 1.0.0
* @version 1.2.5
**/
data class QueryEntireSpotScheduleResponse(
data class QueryEntireSpotScheduleWebResponse(
val schedules: List<SpotScheduleResponse>
)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
package team.comit.simtong.domain.schedule.dto
package team.comit.simtong.domain.schedule.dto.response

import team.comit.simtong.domain.schedule.model.value.Scope
import java.time.LocalDate
import java.util.UUID

/**
*
* 개인 일정과 소속 지점의 일정 조회 정보를 다루는 QueryIndividualSpotScheduleResponse
* 개인 일정과 소속 지점의 일정 조회 정보를 다루는 QueryIndividualSpotScheduleWebResponse
*
* @author kimbeomjin
* @author Chokyunghyeon
* @date 2022/12/02
* @version 1.0.0
* @version 1.2.5
**/
data class QueryIndividualSpotScheduleResponse(
data class QueryIndividualSpotScheduleWebResponse(
val schedules: List<ScheduleResponse>
)

Expand Down

0 comments on commit 3d8b721

Please sign in to comment.