|
@@ -374,10 +374,10 @@
|
|
|
and b.orderstatus = #{orderstatus}
|
|
and b.orderstatus = #{orderstatus}
|
|
|
</if>
|
|
</if>
|
|
|
<if test="startDate != null and startDate != '' ">
|
|
<if test="startDate != null and startDate != '' ">
|
|
|
- and a.createtime > #{startDate}
|
|
|
|
|
|
|
+ and a.createtime >= #{startDate}
|
|
|
</if>
|
|
</if>
|
|
|
<if test="endDate != null and endDate != '' ">
|
|
<if test="endDate != null and endDate != '' ">
|
|
|
- and #{endDate} > a.endDate
|
|
|
|
|
|
|
+ and a.endDate <= #{endDate}
|
|
|
</if>
|
|
</if>
|
|
|
</select>
|
|
</select>
|
|
|
|
|
|