|
@@ -0,0 +1,26 @@
|
|
|
|
+package com.caimei.www.controller;
|
|
|
|
+
|
|
|
|
+import com.caimei.www.mapper.ProductDao;
|
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
+
|
|
|
|
+import javax.annotation.Resource;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Description
|
|
|
|
+ *
|
|
|
|
+ * @author : plf
|
|
|
|
+ * @date : 2020/12/23
|
|
|
|
+ */
|
|
|
|
+@Controller
|
|
|
|
+@RequestMapping("classification")
|
|
|
|
+public class ClassificationController {
|
|
|
|
+ @Resource
|
|
|
|
+ private ProductDao productDao;
|
|
|
|
+
|
|
|
|
+ @GetMapping("/select.html")
|
|
|
|
+ public String signUp() {
|
|
|
|
+ return "templates/help/select.html";
|
|
|
|
+ }
|
|
|
|
+}
|