admin
2020-05-16 03f9370b85d930bd232f72721e826b5875f898cb
fanli/src/main/java/com/yeshi/fanli/util/TimeUtil.java
@@ -121,6 +121,26 @@
      }
   }
   
   public static Date parseDotYYYYMMDD(String st) {
      SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd");
      try {
         return sdf.parse(st);
      } catch (Exception e) {
          e.printStackTrace();
         return null;
      }
   }
   public static Date parseDotCommon(String st) {
      SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd HH:mm:ss");
      try {
         return sdf.parse(st);
      } catch (Exception e) {
          e.printStackTrace();
         return null;
      }
   }
   public static long convertAllTimeToTemp(String st) {
      Date date = new Date();
      SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm");