|
|
@ -6,8 +6,6 @@ |
|
|
<!-- 可根据自己的需求,是否要使用 --> |
|
|
<!-- 可根据自己的需求,是否要使用 --> |
|
|
<resultMap type="com.heai.modules.taskmanage.entity.TaskDetailEntity" id="taskListMap"> |
|
|
<resultMap type="com.heai.modules.taskmanage.entity.TaskDetailEntity" id="taskListMap"> |
|
|
<result property="id" column="id"/> |
|
|
<result property="id" column="id"/> |
|
|
|
|
|
|
|
|
<result property="taskDescription" column="task_description"/> |
|
|
|
|
|
<result property="department" column="department"/> |
|
|
<result property="department" column="department"/> |
|
|
<result property="status" column="status"/> |
|
|
<result property="status" column="status"/> |
|
|
<result property="createdDate" column="created_date"/> |
|
|
<result property="createdDate" column="created_date"/> |
|
|
@ -39,7 +37,7 @@ |
|
|
<where> |
|
|
<where> |
|
|
td.site = #{site} |
|
|
td.site = #{site} |
|
|
<if test="department != null and department != ''"> |
|
|
<if test="department != null and department != ''"> |
|
|
and tl.department like #{department} |
|
|
|
|
|
|
|
|
and td.department like #{department} |
|
|
</if> |
|
|
</if> |
|
|
<if test="customer != null and customer != ''"> |
|
|
<if test="customer != null and customer != ''"> |
|
|
and tl.customer like #{customer} |
|
|
and tl.customer like #{customer} |
|
|
|