项目列表添加品牌搜索条件

This commit is contained in:
CD
2022-12-29 15:32:32 +08:00
parent 8cb780919d
commit 9f591d67fc
@@ -120,6 +120,11 @@
<if test="params.digitalPlatform != null and params.digitalPlatform != '' ">
and plb.digital_platform like concat('%',#{params.digitalPlatform},'%')
</if>
<!--搜索条件:品牌-->
<if test="params.brand != null and params.brand != '' ">
and plb.brand = #{params.brand}
</if>
</where>
order by plb.sort desc, plb.create_time desc
</select>