如 <if test="offset != null and rows != null">
<select id="getsLog" parameterType="java.util.Map"
resultType="OrdersLogInfo">
SELECT * FROM orderslog
<where>
<if test="ordersid != null">
AND ordersid = #{ordersid}
</if>
<if test="type != null">
AND type = #{type}
</if>
</where>
ORDER BY id ASC
<if test="offset != null and rows != null">
LIMIT #{offset}, #{rows}
</if>
</select>