yeguodong 1 nedēļu atpakaļ
vecāks
revīzija
fa4dc7e7af

+ 7 - 0
src/main/java/thyyxxk/webserver/controller/lc/company/LcCompanyController.java

@@ -14,6 +14,8 @@ import thyyxxk.webserver.utils.ListUtil;
 import thyyxxk.webserver.utils.ResultVoUtil;
 import thyyxxk.webserver.utils.StringUtil;
 
+import java.text.SimpleDateFormat;
+import java.util.Date;
 import java.util.List;
 
 
@@ -61,4 +63,9 @@ public class LcCompanyController {
             return ResultVoUtil.fail(ExceptionEnum.LOGICAL_ERROR, "新增失败");
         }
     }
+
+    public static void main(String[] args) {
+        String yyyyMMddHHmmssSSS = new SimpleDateFormat("yyyyMMddHHmmssSSS").format(new Date());
+        System.out.println(yyyyMMddHHmmssSSS);
+    }
 }

+ 1 - 1
src/main/java/thyyxxk/webserver/service/zhuyuanyiji/MedicineManagementService.java

@@ -44,7 +44,7 @@ public class MedicineManagementService {
     }
 
     public ResultVo<List<MedicinePage>> fetchUsedMedicines(FetchMedicines params) {
-        transformDateToDatetime(params);
+//        transformDateToDatetime(params);
         buildChildDepartments(params);
         List<MedicinePage> list = dao.selectUsedMedicines(params);
         if (list.isEmpty()) {