From 2464548977f4720bc8fceeb5d999c1a3852c2d10 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期四, 21 四月 2022 19:38:30 +0800 Subject: [PATCH] 签到与任务 --- app/src/main/java/com/yeshi/makemoney/app/service/inter/goldcorn/GoldCornSettleService.java | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/com/yeshi/makemoney/app/service/inter/goldcorn/GoldCornSettleService.java b/app/src/main/java/com/yeshi/makemoney/app/service/inter/goldcorn/GoldCornSettleService.java index 8bfdc75..e2795b1 100644 --- a/app/src/main/java/com/yeshi/makemoney/app/service/inter/goldcorn/GoldCornSettleService.java +++ b/app/src/main/java/com/yeshi/makemoney/app/service/inter/goldcorn/GoldCornSettleService.java @@ -6,6 +6,7 @@ import com.yeshi.makemoney.app.exception.user.UserInfoException; import java.math.BigDecimal; +import java.util.Date; /** * @author hxh @@ -23,7 +24,7 @@ * @date 11:46 2022/4/7 * @param: day **/ - public void startSettle(String day); + public void startSettle(Date day); /** @@ -35,7 +36,7 @@ * @param: day * @param: rate 姹囩巼 **/ - public void settle(Long uid, String day, BigDecimal rate) throws GoldCornConsumeRecordException, UserMoneyRecordException; + public void settle(Long uid, Date day, BigDecimal rate) throws GoldCornConsumeRecordException, UserMoneyRecordException; /** @@ -46,7 +47,7 @@ * @param: uid * @param: day **/ - public void settle(Long uid, String day) throws UserInfoException, GoldCornMoneyExchangeRateRecordException, UserMoneyRecordException, GoldCornConsumeRecordException; + public void settle(Long uid, Date day) throws UserInfoException, GoldCornMoneyExchangeRateRecordException, UserMoneyRecordException, GoldCornConsumeRecordException; } -- Gitblit v1.8.0