master:app搜索类别列表调整;

pull/1121/head
liujiang 2025-08-27 00:06:34 +08:00
parent 5f8dc1c5ae
commit 447a497987
1 changed files with 6 additions and 2 deletions

View File

@ -54,12 +54,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="getStyleList" >
SELECT DISTINCT
SELECT
style
FROM
store_product_category_attribute
WHERE
del_flag = 0
del_flag = 0 AND style != ''
GROUP BY
style
ORDER BY
COUNT( 1 ) DESC
</select>