From 9beca64e96032190ea2b73dc699c74b35e9187f5 Mon Sep 17 00:00:00 2001 From: liquanyu Date: Thu, 25 Mar 2021 10:06:31 +0800 Subject: [PATCH] update --- .../java/com/lyms/platform/operate/web/controller/TestController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java index 60f303f..27b63ae 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java @@ -3982,7 +3982,7 @@ public class TestController extends BaseController { @RequestMapping(value = "/updateWeightIsUp", method = RequestMethod.GET) public String updateWeightIsUp(@RequestParam(required = false) String hospitalId, String startDate, String endDate) { List patientWeights = mongoTemplate.find(Query.query(Criteria.where("yn"). - is("1").and("_id").is("5f0bfd6199329c3fdf92ef28")), PatientWeight.class); + is("1")), PatientWeight.class); System.out.println("本次读取了【" + patientWeights.size() + "】条数据"); int batchSize = 1000; -- 1.8.3.1