ludc
2023-12-14 d9df19afd4965a58b8628887a4756bd61b74e992
Source/UBCS/ubcs-service-api/ubcs-util-api/src/main/java/com/vci/ubcs/starter/web/toolmodel/DateConverter.java
@@ -140,7 +140,7 @@
      return text.substring(0, text.lastIndexOf(".")) + "." + nano;
   }
   public static void main(String[] args) {
   /*public static void main(String[] args) {
      List<String> list = new ArrayList<String>() {
         {
            this.add("2020-11-12 12:12:03");
@@ -175,7 +175,7 @@
         }
      });
   }
   }*/
   public String getAsText(String dateFormat) {
      Date value = this.getValue();
@@ -185,4 +185,5 @@
      return value != null ? (new SimpleDateFormat(dateFormat)).format(value) : "";
   }
}