1.switch case用法
<td th:switch="${activity.type}">
<span th:case="1">传统节日</span>
<span th:case="2">公司活动</span>
<span th:case="3">同事生日</span>
</td>
2.时间格式
<td th:text="${#dates.format(activity.atime,'yyyy-MM-dd hh:mm:ss')}"></td>
```bash