Skip to content

Commit

Permalink
fix: change search spec
Browse files Browse the repository at this point in the history
  • Loading branch information
DongGeon0908 committed Aug 26, 2024
1 parent 79a0ef3 commit 5a72325
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ import java.time.LocalDate

data class PostCountSearchSpec(
val uid: Long,
val fromDate: LocalDate,
val toDate: LocalDate,
val fromDate: LocalDate?,
val toDate: LocalDate?,
)
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package com.hero.alignlab.domain.pose.model.request
import java.time.LocalDate

data class PoseSearchRequest(
val fromDate: LocalDate,
val toDate: LocalDate,
val fromDate: LocalDate?,
val toDate: LocalDate?,
)
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class PoseCountResource(
private val poseCountService: PoseCountService,
) {
/**
* 정렬
* 정렬조건
* - date,desc
* - date,asc
*/
Expand Down

0 comments on commit 5a72325

Please sign in to comment.