-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from hyosung-second-team1/53-jsp-table
[Feat] 테이블 ui 및 기능 구현 완료
- Loading branch information
Showing
11 changed files
with
364 additions
and
72 deletions.
There are no files selected for viewing
6 changes: 4 additions & 2 deletions
6
src/main/java/today/meevote/domain/statistics/dao/StatsDao.java
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
package today.meevote.domain.statistics.dao; | ||
|
||
import org.apache.ibatis.annotations.Mapper; | ||
import org.apache.ibatis.annotations.Param; | ||
|
||
import today.meevote.domain.statistics.dto.response.GetMyCategoryStatsDto; | ||
import today.meevote.domain.statistics.dto.response.GetMyScheduleStatsDto; | ||
|
||
import java.util.List; | ||
|
||
@Mapper | ||
public interface StatsDao { | ||
public List<GetMyCategoryStatsDto> getMyCategoryStats(String email, Boolean isGroup, String year, String month); | ||
public List<GetMyCategoryStatsDto> getMyCategoryStats(@Param("email") String email, @Param("isGroup") Boolean isGroup, @Param("year") String year, @Param("month") String month); | ||
|
||
public List<GetMyScheduleStatsDto> getMyScheduleStats(String email, Boolean isGroup, Long categoryId, String year); | ||
public List<GetMyScheduleStatsDto> getMyScheduleStats(@Param("email") String email, @Param("isGroup") Boolean isGroup, @Param("categoryId") Long categoryId, @Param("year") String year); | ||
} |
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
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
Oops, something went wrong.