新人限时首充接口对接

This commit is contained in:
huangjian
2022-07-29 15:13:49 +08:00
parent be882c861f
commit 9a97d6321d
12 changed files with 85 additions and 38 deletions

View File

@@ -313,7 +313,7 @@ public class TimeUtil {
long hour = seconds / (60 * 60) % 24;
sb.append(hour).append("");
long minute = (seconds - 60 * 60 * hour) / 60;
long minute = seconds / 60 % 60;
sb.append(minute).append("");
return sb.toString();