|
@@ -138,14 +138,14 @@
|
|
|
resultType="com.platform.dao.vo.repair.RepairApplicationFormVO">
|
|
|
select * from t_repair_application_form
|
|
|
<where>
|
|
|
- <if test="repairUserId != null">
|
|
|
- and repair_user_id = #{repairUserId}
|
|
|
+ <if test="searchStartTime != null">
|
|
|
+ and repair_start_time <![CDATA[>]]> #{searchStartTime}
|
|
|
</if>
|
|
|
- <if test="searchTimeStart != null">
|
|
|
- and repair_start_time <![CDATA[>]]> #{searchTimeStart}
|
|
|
+ <if test="searchEndTime != null">
|
|
|
+ and repair_start_time <![CDATA[<]]> #{searchEndTime}
|
|
|
</if>
|
|
|
- <if test="searchTimeEnd != null">
|
|
|
- and repair_start_time <![CDATA[<]]> #{searchTimeEnd}
|
|
|
+ <if test="repairUserId != null">
|
|
|
+ and repair_user_id = #{repairUserId}
|
|
|
</if>
|
|
|
</where>
|
|
|
</select>
|