原因很简单:在ibatis的配置文件中不能出现小于号(>)

    <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
        delete from
        t_match
        where CREATE_TIME<=#{createTime,jdbcType=BIGINT} (修改为大于号)

  where #{createTime,jdbcType=BIGINT} >= CREATE_TIME
    </delete>

05-10 23:30