cjl
2023-08-16 5c9f8f71b676dda74c740b60e5af4b58c5026776
screen-common/src/main/java/com/moral/util/DateUtils.java
@@ -507,6 +507,14 @@
        }
    }
    public static boolean isTimeBeforE(Date nows, Date date) {
        long hous = nows.getTime() - date.getTime();
        if (hous >= 0) {
            return true;
        } else {
            return false;
        }
    }
    /**
     * 将小时数换算成返回以毫秒为单位的时间
     *