Browse Source

术语映射各医院统计排序问题

zhaops 4 years ago
parent
commit
cf48c31238
1 changed files with 2 additions and 1 deletions
  1. 2 1
      cdssman-service/src/main/resources/mapper/HospitalInfoMapper.xml

+ 2 - 1
cdssman-service/src/main/resources/mapper/HospitalInfoMapper.xml

@@ -80,6 +80,7 @@
         <if test="hospitalInfoPageVO.name!=null and hospitalInfoPageVO.name!=''">
             AND a.name Like concat("%",#{hospitalInfoPageVO.name},"%")
         </if>
-        order by a.gmt_create asc
+        order by a.gmt_create asc,
+        a.id ASC
     </select>
 </mapper>