1
0
chenendian vor 1 Monat
Ursprung
Commit
1a6f1d3137

+ 103 - 0
siwei-modules/siwei-apply/src/main/java/com/siwei/apply/controller/ChenController.java

@@ -0,0 +1,103 @@
+package com.siwei.apply.controller;
+
+import com.siwei.apply.domain.res.YdysyxzRes;
+import com.siwei.apply.domain.vo.YdysyxzVo;
+import com.siwei.apply.service.YdysyxzService;
+import com.siwei.common.core.domain.R;
+import com.siwei.common.core.web.controller.BaseController;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
+
+import java.util.HashMap;
+import java.util.Map;
+
+/**
+ * 用地预审与选址 控制器
+ * 单独选址第一步
+ */
+@RestController
+@RequestMapping("/chen")
+public class ChenController extends BaseController {
+    @Autowired
+    private YdysyxzService ydysyxzService;
+
+    /**
+     * 添加用地预审与选址信息
+     */
+    @PostMapping()
+    public R<Map> Add(@RequestBody YdysyxzVo ydysyxzVo) {
+        try {
+            // 判断是否存在
+            Boolean b = ydysyxzService.isExit(ydysyxzVo.getProjectId());
+            if (b) {
+                return R.fail("此项目已添加用地预审与选址");
+            }
+            // 添加
+            String id = ydysyxzService.add(ydysyxzVo);
+            Map<String, String> map = new HashMap<>();
+            map.put("id", id);
+            return R.ok(map);
+        } catch (Exception e) {
+            return R.fail(e.getMessage());
+        }
+    }
+
+    /**
+     * 获取用地预审与选址信息
+     *
+     * @param projectId 项目ID
+     * @return 用地预审与选址信息
+     */
+    @GetMapping("/{projectId}")
+    public R<YdysyxzRes> Get(@PathVariable String projectId) {
+        try {
+            return R.ok(ydysyxzService.get(projectId));
+        } catch (Exception e) {
+            return R.fail(e.getMessage());
+        }
+    }
+
+    /**
+     * 通过主键id获取用地预审与选址信息,返回结果与按projectId查询一致
+     */
+    @GetMapping("/id/{id}")
+    public R<YdysyxzRes> GetById(@PathVariable String id) {
+        try {
+            return R.ok(ydysyxzService.getById(id));
+        } catch (Exception e) {
+            return R.fail(e.getMessage());
+        }
+    }
+
+    /**
+     * 通过主键id获取用地预审与选址信息(POST方式,参数为RequestBody)
+     */
+    @PostMapping("/id")
+    public R<YdysyxzRes> GetByIdPost(@RequestBody String id) {
+        try {
+            return R.ok(ydysyxzService.getById(id));
+        } catch (Exception e) {
+            return R.fail(e.getMessage());
+        }
+
+    }
+
+    @GetMapping("/test")
+    public R<String> getDataTest(String str) {
+        try {
+            String retString = "测试";
+            return R.ok(str+retString);
+        } catch (Exception e) {
+            return R.fail(e.getMessage());
+        }
+    }
+
+    // 测试用main方法
+    public static void main(String[] args) {
+        System.out.println("陈先生");
+    }
+
+
+
+
+}