|
|
@ -27,11 +27,11 @@ |
|
|
|
<if test="param.conferencePlanId != null and param.conferencePlanId != ''"> |
|
|
|
<if test="param.conferencePlanId != null and param.conferencePlanId != ''"> |
|
|
|
AND t2.id = #{param.conferencePlanId} |
|
|
|
AND t2.id = #{param.conferencePlanId} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="param.startTime != null and param.startTime != ''"> |
|
|
|
<if test="param.actualStartTime != null and param.actualStartTime != ''"> |
|
|
|
AND t1.actualStartTime >= #{param.startTime} |
|
|
|
AND t1.actual_start_time >= #{param.actualStartTime} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="param.endTime != null and param.endTime != ''"> |
|
|
|
<if test="param.actualEndTime != null and param.actualEndTime != ''"> |
|
|
|
AND t1.actualEndTime <= #{param.endTime} |
|
|
|
AND t1.actual_end_time <= #{param.actualEndTime} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="param.unit != null and param.unit != ''"> |
|
|
|
<if test="param.unit != null and param.unit != ''"> |
|
|
|
AND t2.unit like concat('%', #{param.unit}, '%') |
|
|
|
AND t2.unit like concat('%', #{param.unit}, '%') |
|
|
|