Commit c81b6382 c81b63826c31460b2988033a394e5a31b4f05b5f by 姬傲辉

添加了导出excel并发送邮件功能

修改了查询全部1
1 parent 0e091d7c
......@@ -62,6 +62,9 @@
<if test="score != null">
and score = #{score}
</if>
<if test="year != null">
and year = #{year}
</if>
<if test="platformInfo != null">
and platform_info = #{platformInfo}
</if>
......
......@@ -131,6 +131,9 @@
<if test="score != null">
and score &gt;= #{score}
</if>
<if test="year != null">
and year = #{year}
</if>
<!-- <if test="score2 != null">-->
<!-- and score &lt;= #{score2}-->
<!-- </if>-->
......