|
@@ -49,6 +49,15 @@ public class TGuijiNaturalresourcesQlrjbxxController extends BaseController {
|
|
|
return prefix + "/grjbxx";
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ //其他
|
|
|
+ @RequiresPermissions("system:grjbxx:view")
|
|
|
+ @GetMapping("/qtjbxx")
|
|
|
+ public String qtjbxx(ModelMap map) {
|
|
|
+ map.put("flag","qt");
|
|
|
+ return prefix + "/grjbxx";
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 查询个人基本信息列表
|
|
|
*/
|
|
@@ -76,6 +85,19 @@ public class TGuijiNaturalresourcesQlrjbxxController extends BaseController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 查询其他基本信息列表
|
|
|
+ */
|
|
|
+ @RequiresPermissions("system:grjbxx:list")
|
|
|
+ @PostMapping("/qtList")
|
|
|
+ @ResponseBody
|
|
|
+ public TableDataInfo qtList(TGuijiNaturalresourcesQlrjbxx tGuijiNaturalresourcesQlrjbxx) {
|
|
|
+ startPage();
|
|
|
+ tGuijiNaturalresourcesQlrjbxx.setQlrxz("");
|
|
|
+ List<TGuijiNaturalresourcesQlrjbxx> list = tGuijiNaturalresourcesQlrjbxxService.selectTGuijiNaturalresourcesQlrjbxxList(tGuijiNaturalresourcesQlrjbxx);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 导出个人基本信息列表
|
|
|
*/
|
|
|
@RequiresPermissions("system:grjbxx:export")
|