Commit 4ef38458 by zhiwj

修改bug

parent 3818d335
......@@ -826,7 +826,7 @@
count(*) totalCount,
count(good_evaluate_status = 1 or null) goodCount,
count(bad_evaluate_status =1 or null) badCount,
count(good_evaluate_status = 1 or null) / count(*) goodsRate
count(good_evaluate_status = 1 or null) / count(*) goodRate
from tab_evaluate
where enterprise_id = #{enterpriseId}
and status = 1
......@@ -842,7 +842,7 @@
order by totalCount
</if>
<if test="sortColumn == 2">
order by goodsRate
order by goodRate
</if>
<if test="sortColumn == 3">
order by badCount
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment