|
@@ -1,7 +1,6 @@
|
|
|
package com.sooka.system.controller;
|
|
|
|
|
|
import java.util.List;
|
|
|
-
|
|
|
import com.sooka.common.annotation.Log;
|
|
|
import com.sooka.common.core.controller.BaseController;
|
|
|
import com.sooka.common.core.domain.AjaxResult;
|
|
@@ -34,9 +33,19 @@ public class TGuijiNaturalresourcesQlrjbxxController extends BaseController {
|
|
|
@Autowired
|
|
|
private ITGuijiNaturalresourcesQlrjbxxService tGuijiNaturalresourcesQlrjbxxService;
|
|
|
|
|
|
+ //个人
|
|
|
@RequiresPermissions("system:grjbxx:view")
|
|
|
@GetMapping()
|
|
|
- public String grjbxx() {
|
|
|
+ public String grjbxx(ModelMap map) {
|
|
|
+ map.put("flag","gr");
|
|
|
+ return prefix + "/grjbxx";
|
|
|
+ }
|
|
|
+
|
|
|
+ //企业
|
|
|
+ @RequiresPermissions("system:grjbxx:view")
|
|
|
+ @GetMapping("/qyjbxx")
|
|
|
+ public String qyjbxx(ModelMap map) {
|
|
|
+ map.put("flag","qy");
|
|
|
return prefix + "/grjbxx";
|
|
|
}
|
|
|
|
|
@@ -54,6 +63,19 @@ public class TGuijiNaturalresourcesQlrjbxxController extends BaseController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 查询企业基本信息列表
|
|
|
+ */
|
|
|
+ @RequiresPermissions("system:grjbxx:list")
|
|
|
+ @PostMapping("/qyList")
|
|
|
+ @ResponseBody
|
|
|
+ public TableDataInfo qyList(TGuijiNaturalresourcesQlrjbxx tGuijiNaturalresourcesQlrjbxx) {
|
|
|
+ startPage();
|
|
|
+ tGuijiNaturalresourcesQlrjbxx.setQlrxz("企业");
|
|
|
+ List<TGuijiNaturalresourcesQlrjbxx> list = tGuijiNaturalresourcesQlrjbxxService.selectTGuijiNaturalresourcesQlrjbxxList(tGuijiNaturalresourcesQlrjbxx);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 导出个人基本信息列表
|
|
|
*/
|
|
|
@RequiresPermissions("system:grjbxx:export")
|