|
|
@@ -159,6 +159,10 @@
|
|
|
<if test="name !=null and name != ''">
|
|
|
and t.name = #{name}
|
|
|
</if>
|
|
|
+
|
|
|
+ <if test="nameLike !=null and nameLike != ''">
|
|
|
+ and t.name like concat('%',#{name},'%')
|
|
|
+ </if>
|
|
|
<if test="link !=null and link != ''">
|
|
|
and t.link= #{link}
|
|
|
</if>
|
|
|
@@ -246,6 +250,9 @@
|
|
|
<if test="name !=null and name != ''">
|
|
|
and t.name like concat('%',#{name},'%')
|
|
|
</if>
|
|
|
+ <if test="nameLike !=null and nameLike != ''">
|
|
|
+ and t.name like concat('%',#{name},'%')
|
|
|
+ </if>
|
|
|
<if test="link !=null and link != ''">
|
|
|
and t.link= #{link}
|
|
|
</if>
|