Commit c81b6382 c81b63826c31460b2988033a394e5a31b4f05b5f by 姬傲辉

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

修改了查询全部1
1 parent 0e091d7c
...@@ -62,6 +62,9 @@ ...@@ -62,6 +62,9 @@
62 <if test="score != null"> 62 <if test="score != null">
63 and score = #{score} 63 and score = #{score}
64 </if> 64 </if>
65 <if test="year != null">
66 and year = #{year}
67 </if>
65 <if test="platformInfo != null"> 68 <if test="platformInfo != null">
66 and platform_info = #{platformInfo} 69 and platform_info = #{platformInfo}
67 </if> 70 </if>
......
...@@ -131,6 +131,9 @@ ...@@ -131,6 +131,9 @@
131 <if test="score != null"> 131 <if test="score != null">
132 and score &gt;= #{score} 132 and score &gt;= #{score}
133 </if> 133 </if>
134 <if test="year != null">
135 and year = #{year}
136 </if>
134 <!-- <if test="score2 != null">--> 137 <!-- <if test="score2 != null">-->
135 <!-- and score &lt;= #{score2}--> 138 <!-- and score &lt;= #{score2}-->
136 <!-- </if>--> 139 <!-- </if>-->
......