Browse Source

常量中计算改成数值

hejq 7 years ago
parent
commit
8a517ee554

+ 2 - 1
src/main/java/com/uas/platform/b2c/prod/commodity/constant/IntegerConstant.java

@@ -34,6 +34,7 @@ public class IntegerConstant {
 
     /**
      * 一天的毫秒数
+     * 60 * 60 * 24 * 1000
      */
-    public static final Integer ONE_DAY_MILLISECONDS = 60 * 60 * 24 * 1000;
+    public static final Integer ONE_DAY_MILLISECONDS = 86400000;
 }