Commit 0408ab56d3afebc3b530d2421004b1615497c1e7
1 parent
cf5329517f
Exists in
master
and in
1 other branch
update
Showing 1 changed file with 2 additions and 2 deletions
talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/LymsHisInfoController.java
View file @
0408ab5
... | ... | @@ -60,10 +60,10 @@ |
60 | 60 | .or().eq("idCard", hisInfo.getSynthesisQuery())); |
61 | 61 | } |
62 | 62 | if(StringUtil.isNotEmpty(hisInfo.getStartCreatedtime())){ |
63 | - query.ge("createdtime", hisInfo.getStartCreatedtime()); | |
63 | + query.ge("created", hisInfo.getStartCreatedtime()); | |
64 | 64 | } |
65 | 65 | if(StringUtil.isNotEmpty(hisInfo.getEndCreatedtime())){ |
66 | - query.le("createdtime", hisInfo.getEndCreatedtime()); | |
66 | + query.le("created", hisInfo.getEndCreatedtime()); | |
67 | 67 | } |
68 | 68 | Page<LymsHisInfo> hisInfoPage=lymsHisInfoService.page(page,query); |
69 | 69 | baseResponse.setObject(hisInfoPage); |