添加了导出excel并发送邮件功能
修改了查询全部1
Showing
2 changed files
with
6 additions
and
0 deletions
... | @@ -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 >= #{score} | 132 | and score >= #{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 <= #{score2}--> | 138 | <!-- and score <= #{score2}--> |
136 | <!-- </if>--> | 139 | <!-- </if>--> | ... | ... |
-
Please register or sign in to post a comment