任务 抽奖 签到
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.sqx.common.utils;
|
||||
|
||||
import cn.hutool.core.date.DateUtil;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.joda.time.DateTime;
|
||||
import org.joda.time.LocalDate;
|
||||
@@ -159,4 +160,17 @@ public class DateUtils {
|
||||
DateTime dateTime = new DateTime(date);
|
||||
return dateTime.plusYears(years).toDate();
|
||||
}
|
||||
|
||||
|
||||
//获取当日剩余秒数
|
||||
public static long todayAfterSecond() {
|
||||
Date now = new Date();
|
||||
// 获取当天结束时间(即当天23:59:59对应的Date对象)
|
||||
Date endOfDay = DateUtil.endOfDay(now);
|
||||
// 计算时间差(单位为毫秒)
|
||||
long diffMillis = endOfDay.getTime() - now.getTime();
|
||||
// 将毫秒转换为秒
|
||||
long diffSeconds = diffMillis / 1000;
|
||||
return diffSeconds;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user