|
|
@@ -1,6 +1,7 @@
|
|
|
package com.siwei.apply.controller.cadastre;
|
|
|
|
|
|
|
|
|
+import com.siwei.apply.domain.FzssFxrwrz;
|
|
|
import com.siwei.apply.service.cadastre.IZymlService;
|
|
|
import com.siwei.common.core.domain.R;
|
|
|
import com.siwei.common.core.web.controller.BaseController;
|
|
|
@@ -173,20 +174,15 @@ public class ZymlController extends BaseController {
|
|
|
return list;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
/**
|
|
|
* 设置当前表的别名json
|
|
|
- * @param bsm
|
|
|
- * @param jsonData
|
|
|
+ * @param
|
|
|
+ * @param
|
|
|
* @return
|
|
|
*/
|
|
|
@PutMapping("/setLegend")
|
|
|
- public R<String> setLegendAttr(String bsm,String jsonData) {
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+ public R<String> setLegendAttr(@RequestBody String param,@RequestParam String bsm) {
|
|
|
+ String jsonData = param;
|
|
|
String res = zymlService.setLegendAttr(bsm,jsonData);
|
|
|
return R.ok(res);
|
|
|
}
|
|
|
@@ -195,6 +191,4 @@ public class ZymlController extends BaseController {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
}
|