Merge branch 'feature/bug-20250707' into feature/product

This commit is contained in:
曹鹏飞 2025-07-08 11:15:50 +08:00
commit c67829bc53
1 changed files with 2 additions and 0 deletions

View File

@ -45,12 +45,14 @@
select batch_number,name,main_sort as 'sort'
from product_model_params_item
where main and model_params_id=#{paramId} and language_code=#{language}
order by main_sort
</select>
<select id="getImportantParamsListForSort" resultType="com.nflg.mobilebroken.common.pojo.vo.ParamsSortListVO">
select batch_number,name,important_sort as 'sort'
from product_model_params_item
where important and model_params_id=#{paramId} and language_code=#{language}
order by important_sort
</select>
<select id="getImportantListByLanguage" resultType="com.nflg.mobilebroken.common.pojo.vo.ProductParamsItemVO">