|
@@ -0,0 +1,21 @@
|
|
|
+package com.huimv.environment.controller;
|
|
|
+
|
|
|
+import com.huimv.common.utils.Result;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Project : huimv.shiwan
|
|
|
+ * @Package : com.huimv.biosafety.uface.controller
|
|
|
+ * @Description : TODO
|
|
|
+ * @Version : 1.0
|
|
|
+ * @Author : ZhuoNing
|
|
|
+ * @Create : 2020-12-25
|
|
|
+ **/
|
|
|
+@RestController
|
|
|
+@RequestMapping(value = "/environmentControl",method = RequestMethod.GET)
|
|
|
+public class EnvironmentControlController {
|
|
|
+
|
|
|
+ public Result getPigpen(@RequestParam(value = "farmId") Integer farmId){
|
|
|
+ return
|
|
|
+ }
|
|
|
+}
|