|
@@ -33,6 +33,13 @@
|
|
|
resultType="com.tzld.piaoquan.api.model.po.contentplatform.ContentPlatformAccount">
|
|
|
select *
|
|
|
from content_platform_account
|
|
|
+ <if test="param!=null">
|
|
|
+ <where>
|
|
|
+ <if test="param.name != null and param.name !=''">
|
|
|
+ and name like concat('%', #{param.name}, '%')
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ </if>
|
|
|
order by create_timestamp desc
|
|
|
limit #{offset}, #{pageSize}
|
|
|
</select>
|