|
@@ -0,0 +1,24 @@
|
|
|
+package com.imcs.admin.business.controller;
|
|
|
+
|
|
|
+import com.imcs.admin.business.service.BigScreenDetailService;
|
|
|
+import com.imcs.admin.common.Result;
|
|
|
+import com.imcs.admin.db.service.JdbcService;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+
|
|
|
+/*@RestController
|
|
|
+@RequestMapping("/bigScreen")
|
|
|
+public class BigScreenDetailController {
|
|
|
+ @Resource
|
|
|
+ private BigScreenDetailService bigScreenDetailService;
|
|
|
+
|
|
|
+ @RequestMapping("/detail/${id}")
|
|
|
+ public Result getDeviceDetail(@PathVariable Long id){
|
|
|
+ //bigScreenDetailService.getBigScreenDetail(id)
|
|
|
+ return new Result();
|
|
|
+ }
|
|
|
+}*/
|