Skip to content

Commit

Permalink
✨ :: SearchAccountDto 외출여부 필드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
snowykte0426 committed Feb 2, 2025
1 parent d4e6381 commit 400d2b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ data class SearchAccountDto(
val name: String?,
val authority: Authority?,
val isBlackList: Boolean?,
val major: Major?
val major: Major?,
val isOuting: Boolean?
)
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,16 @@ class StudentCouncilDataMapper {
name: String?,
authority: Authority?,
isBlackList: Boolean?,
major: Major?
major: Major?,
isOuting: Boolean?
) = SearchAccountDto(
grade = grade,
gender = gender,
name = name,
authority = authority,
isBlackList = isBlackList,
major = major
major = major,
isOuting = isOuting
)

fun toResponse(lateAccountDto: LateAccountDto) =
Expand Down

0 comments on commit 400d2b6

Please sign in to comment.