Commit 7e240fbc6b4a1d398f9c6ca8bd396402097d8bc9

Authored by liquanyu
1 parent f47c0442bd
Exists in master and in 1 other branch dev

update

Showing 2 changed files with 1 additions and 2 deletions

platform-biz-patient-service/src/main/java/com/lyms/platform/biz/service/MicroelementService.java View file @ 7e240fb
... ... @@ -31,7 +31,6 @@
31 31 }
32 32 query.addOrder(Sort.Direction.DESC, StringUtils.isNotEmpty(microelementQuery.getSort()) ? microelementQuery.getSort() : "created");
33 33  
34   -
35 34 return microelementDao.queryMicroelementList(query);
36 35 }
37 36  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MicroelementFacade.java View file @ 7e240fb
... ... @@ -94,7 +94,7 @@
94 94 query.setHospitalId(hospitalId);
95 95 query.setPatientIds(patientIds);
96 96 query.setType(0);
97   - query.setSort(" created ");
  97 + query.setSort("created");
98 98  
99 99 if (age != null)
100 100 {