|
@@ -1,13 +1,29 @@
|
|
|
package com.sky.ioc.controller.life;
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
-/** 智享生活 */
|
|
|
+/** 智享生活
|
|
|
+ * @author LunCe*/
|
|
|
@Slf4j
|
|
|
@RestController
|
|
|
@RequestMapping("/life")
|
|
|
public class LifeController {
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+//
|
|
|
+//
|
|
|
+// @RequestMapping(method = RequestMethod.POST,value = "aaaaa")
|
|
|
+// public String aaaaa(){
|
|
|
+// return null;
|
|
|
+// }
|
|
|
+// @PostMapping("bbbbb")
|
|
|
+// public String bbbb(){
|
|
|
+// return null;
|
|
|
+// }
|
|
|
+
|
|
|
}
|