|
@@ -1,13 +1,16 @@
|
|
|
package com.siwei.apply.controller.cadastre;
|
|
package com.siwei.apply.controller.cadastre;
|
|
|
|
|
|
|
|
|
|
+import com.siwei.apply.domain.vo.CadastreFileFilterVo;
|
|
|
import com.siwei.apply.domain.vo.CheckInfoResultVo;
|
|
import com.siwei.apply.domain.vo.CheckInfoResultVo;
|
|
|
import com.siwei.apply.domain.vo.CompareResultVo;
|
|
import com.siwei.apply.domain.vo.CompareResultVo;
|
|
|
|
|
+import com.siwei.apply.domain.vo.ProjectFilterVo;
|
|
|
import com.siwei.apply.service.cadastre.CadastreManageService;
|
|
import com.siwei.apply.service.cadastre.CadastreManageService;
|
|
|
import com.siwei.common.core.domain.R;
|
|
import com.siwei.common.core.domain.R;
|
|
|
import com.siwei.common.core.web.controller.BaseController;
|
|
import com.siwei.common.core.web.controller.BaseController;
|
|
|
import org.gdal.ogr.*;
|
|
import org.gdal.ogr.*;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
@@ -74,6 +77,22 @@ public class CadastreManageController extends BaseController {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取列表
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return
|
|
|
|
|
+ */
|
|
|
|
|
+ @PostMapping("/list")
|
|
|
|
|
+ public R<Map<String, Object>> list(@RequestBody CadastreFileFilterVo cadastreFileFilterVo) {
|
|
|
|
|
+ try {
|
|
|
|
|
+ Map<String, Object> res = cadastreManageService.list(cadastreFileFilterVo);
|
|
|
|
|
+ return R.ok(res);
|
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
|
+ return R.fail(e.getMessage());
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|