fix:十二分制-奖惩规则

This commit is contained in:
wangff
2025-11-05 15:40:31 +08:00
parent 75a0ad4676
commit 85a411bc9a
13 changed files with 28 additions and 10 deletions

View File

@@ -28,7 +28,7 @@ public class TpHelper {
}
private static String generateCode() {
return LocalDateTime.now().format(dtf) + (int) (Math.random() * 900) + 100;
return LocalDateTime.now().format(dtf) + ((int) (Math.random() * 900) + 100);
}