沈斌
2018-04-26 e7eca591f90bc489f3034ef3cf9f77435c8178b1
src/main/java/com/moral/common/convert/StringToDateConverter.java
@@ -22,7 +22,7 @@
          if(StringUtils.isNullOrEmpty(source)){
              throw new RuntimeException(String.format("parser %s to Date fail", source));
          };
          return  new Date(Long.parseLong(source.substring(0,source.length()-3)+"000"));
          return  new Date(Long.parseLong(source));
    }
}