feature/calendar #160

Merged
Fujimatsu merged 4 commits from feature/calendar into main 2024-07-09 01:04:57 +00:00
Showing only changes of commit c0f371a892 - Show all commits

View File

@ -1,11 +1,20 @@
package one.nem.kidshift.data;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import one.nem.kidshift.model.HistoryModel;
public interface RewardData {
/**
* 現時点の合計報酬額を取得する
* @return Integer 合計報酬額
*/
CompletableFuture<Integer> getTotalReward(String childId);
CompletableFuture<List<HistoryModel>> getRewardHistoryList();
CompletableFuture<List<HistoryModel>> getRewardHistoryList(String childId);
}