|
@@ -56,6 +56,12 @@
|
|
|
<if test="createdTimeEnd != null">
|
|
|
and record.created_time <![CDATA[<=]]> #{createdTimeEnd}
|
|
|
</if>
|
|
|
+ <if test="updateTimeStart != null">
|
|
|
+ and record.update_time <![CDATA[>=]]>; #{updateTimeStart}
|
|
|
+ </if>
|
|
|
+ <if test="updateTimeEnd != null">
|
|
|
+ and record.update_time <![CDATA[<=]]> #{updateTimeEnd}
|
|
|
+ </if>
|
|
|
</sql>
|
|
|
<select id="selectList" parameterType="com.platform.dao.dto.preparation.PreparationRecordDTO"
|
|
|
resultType="com.platform.dao.vo.query.preparation.PreparationRecordVO">
|