|
@@ -563,6 +563,20 @@
|
|
|
</if>
|
|
|
) t2
|
|
|
) t
|
|
|
+ <if test="filterPageVO.asc != null and filterPageVO.asc !=''">
|
|
|
+ order by
|
|
|
+ <choose>
|
|
|
+ <when test='filterPageVO.asc=="num"'>num asc</when>
|
|
|
+ <when test='filterPageVO.asc=="percentStr"'>percent asc</when>
|
|
|
+ </choose>
|
|
|
+ </if>
|
|
|
+ <if test="filterPageVO.desc != null and filterPageVO.desc !=''">
|
|
|
+ order by
|
|
|
+ <choose>
|
|
|
+ <when test='filterPageVO.desc=="num"'>num desc</when>
|
|
|
+ <when test='filterPageVO.desc=="percentStr"'>percent desc</when>
|
|
|
+ </choose>
|
|
|
+ </if>
|
|
|
</select>
|
|
|
|
|
|
<!-- 单项否决缺陷占比(首页) -->
|