Commit 22c324537b68050136a88388f3af0a3461fb7537

Authored by shiyang
1 parent 125faa0b02
Exists in master

PC-获取医院患者His列表 用系统抓取时间排序

Showing 1 changed file with 2 additions and 2 deletions

talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/LymsHisInfoController.java View file @ 22c3245
... ... @@ -36,7 +36,7 @@
36 36 private LymsUserService lymsUserService;
37 37  
38 38 /**
39   - * 获取医院患者列表
  39 + * 获取医院患者His列表
40 40 * @param hisInfo
41 41 * @return
42 42 */
... ... @@ -50,7 +50,7 @@
50 50 if(StringUtil.isNotEmpty(hisInfo.getHospitalId())) {
51 51 query.eq("hospitalId", hisInfo.getHospitalId());
52 52 }
53   - query.orderByDesc("created");
  53 + query.orderByDesc("createdtime");
54 54 if(null!=hisInfo.getUpType()){
55 55 query.eq("up_type", hisInfo.getUpType());
56 56 }