Skip to content

Commit

Permalink
chore: pointHistory response 필드명
Browse files Browse the repository at this point in the history
rlaisqls authored May 26, 2023
2 parents a848aab + 0b9db00 commit b357c5f
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
package team.aliens.dms.domain.point.dto

import java.util.UUID
import team.aliens.dms.domain.point.model.PointOption
import team.aliens.dms.domain.point.model.PointType
import team.aliens.dms.domain.point.spi.vo.AllPointHistoryVO
import team.aliens.dms.domain.point.spi.vo.PointHistoryVO
import java.util.UUID

data class PointHistoryResponse(
val totalPoint: Int? = null,
val pointHistories: List<PointHistoryVO>
val pointHistories: List<PointHistoryVO>,
@Deprecated("상벌점 내역 조회 api에 사용, 앱과 협의 후 삭제")
val points: List<PointHistoryVO> = pointHistories
)

data class AllPointHistoryResponse(

0 comments on commit b357c5f

Please sign in to comment.