mybatis 小于大于
--小于等于
<if test="createDate != null and createDate != ''">and create_date <= #{endDate}</if>
--大于等于
<if test="createDate != null and createDate != ''">and create_date >= #{startDate}</if>
--小于等于
<if test="createDate != null and createDate != ''">and create_date <= #{endDate}</if>
--大于等于
<if test="createDate != null and createDate != ''">and create_date >= #{startDate}</if>