update 法规文件类型处理、标准拆分查询表单处理
This commit is contained in:
+3
-2
@@ -50,8 +50,9 @@ public class ClauseSplitController {
|
||||
@AutoLog(value = "条款拆分-获取表单模型")
|
||||
@ApiOperation(value="条款拆分-获取表单模型", notes="条款拆分-获取表单模型")
|
||||
@GetMapping(value = "getFormModel")
|
||||
public Result<Map<String,Object>> getFormModel(@RequestParam(name="type") String type) {
|
||||
return Result.OK(lawsCommonService.getFormModel(MODULE_VALUE, type));
|
||||
public Result<Object> getFormModel(@RequestParam(name="type") String type) {
|
||||
Map<String, Object> formModel = lawsCommonService.getFormModel(MODULE_VALUE, type);
|
||||
return Result.OK(formModel.get(MODULE_VALUE));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user