|
@@ -50,6 +50,12 @@
|
|
|
<if test="keyword != null and keyword != ''">
|
|
|
and record.id like concat(concat('%',#{keyword}),'%')
|
|
|
</if>
|
|
|
+ <if test="createdTimeStart != null">
|
|
|
+ and record.created_time <![CDATA[>=]]>; #{createdTimeStart}
|
|
|
+ </if>
|
|
|
+ <if test="createdTimeEnd != null">
|
|
|
+ and record.created_time <![CDATA[<=]]> #{createdTimeEnd}
|
|
|
+ </if>
|
|
|
</sql>
|
|
|
<select id="selectList" parameterType="com.platform.dao.dto.preparation.PreparationRecordDTO"
|
|
|
resultType="com.platform.dao.vo.query.preparation.PreparationRecordVO">
|