|
|
@@ -40,6 +40,12 @@
|
|
|
<if test="param.createBy != null and param.createBy != ''">
|
|
|
and create_by like concat('%',#{param.createBy},'%')
|
|
|
</if>
|
|
|
+ <if test="param.startTime != null">
|
|
|
+ and create_time >= #{param.startTime}
|
|
|
+ </if>
|
|
|
+ <if test="param.endTime != null">
|
|
|
+ and create_time < #{param.endTime}
|
|
|
+ </if>
|
|
|
</where>
|
|
|
order by node_sort desc,create_time desc
|
|
|
</select>
|