|
@@ -78,7 +78,6 @@ public class RedirectController {
|
|
public String toArticleList(@PathVariable("id") Integer id) {
|
|
public String toArticleList(@PathVariable("id") Integer id) {
|
|
return "redirect:/article/list.html?type=" + id;
|
|
return "redirect:/article/list.html?type=" + id;
|
|
}
|
|
}
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* 文章列表【旧label】
|
|
* 文章列表【旧label】
|
|
*/
|
|
*/
|
|
@@ -93,4 +92,28 @@ public class RedirectController {
|
|
public String toArticleDetail(@PathVariable("id") Integer id) {
|
|
public String toArticleDetail(@PathVariable("id") Integer id) {
|
|
return "redirect:/article/detail.html?id=" + id;
|
|
return "redirect:/article/detail.html?id=" + id;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 二手市场介绍
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/html/secondHand/introduction.jsp")
|
|
|
|
+ public String toFleaMarket() {
|
|
|
|
+ return "redirect:/flea-market/intro.html";
|
|
|
|
+ }
|
|
|
|
+ /**
|
|
|
|
+ * 二手商品列表
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/html/secondHand/secondList.jsp")
|
|
|
|
+ public String toFleaMarketList() {
|
|
|
|
+ return "redirect:/flea-market/list.html";
|
|
|
|
+ }
|
|
|
|
+ /**
|
|
|
|
+ * 二手商品列表
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/html/maintenance/view/secondtransactions.jsp")
|
|
|
|
+ public String toFleaMarketForm() {
|
|
|
|
+ return "redirect:/flea-market/form.html";
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|