|
@@ -45,6 +45,9 @@
|
|
|
<if test="email != null and email !=''">
|
|
|
and email like concat('%',#{email},'%')
|
|
|
</if>
|
|
|
+ <if test="taskName != null and taskName !=''">
|
|
|
+ and task_name like concat('%',#{taskName},'%')
|
|
|
+ </if>
|
|
|
<if test="startDate != null and startDate !=''">
|
|
|
and updatetime >= #{startDate}
|
|
|
</if>
|
|
@@ -65,6 +68,9 @@
|
|
|
<if test="email != null and email !=''">
|
|
|
and email like concat('%',#{email},'%')
|
|
|
</if>
|
|
|
+ <if test="taskName != null and taskName !=''">
|
|
|
+ and task_name like concat('%',#{taskName},'%')
|
|
|
+ </if>
|
|
|
<if test="startDate != null and startDate !=''">
|
|
|
and updatetime >= #{startDate}
|
|
|
</if>
|