Mapper 中日期变量不能与字符串比较,错误写法:

<if test="startTime != null and startTime != ''">
...
</if>

正确写法(去掉空字符串判断):

<if test="startTime != null">
...
</if>