chenshudong пре 4 недеља
родитељ
комит
505ed20ba8

+ 3 - 3
airport-ledger/src/main/resources/mapper/ledger/LedgerSecurityTestMapper.xml

@@ -85,7 +85,7 @@
85 85
             and record_date <![CDATA[ < ]]> date_add(#{endDate} , interval 1 day))
86 86
         </if>
87 87
         group by problem_desc
88
-        order by count desc
88
+        order by total desc
89 89
     </select>
90 90
 
91 91
     <select id="securityTestPassingStatus"
@@ -104,7 +104,7 @@
104 104
             and record_date <![CDATA[ < ]]> date_add(#{endDate} , interval 1 day))
105 105
         </if>
106 106
         group by test_result
107
-        order by count desc
107
+        order by total desc
108 108
     </select>
109 109
 
110 110
     <select id="securityTestRegion"
@@ -123,7 +123,7 @@
123 123
             and record_date <![CDATA[ < ]]> date_add(#{endDate} , interval 1 day))
124 124
         </if>
125 125
         group by region
126
-        order by count desc
126
+        order by total desc
127 127
     </select>
128 128
 
129 129
 </mapper>