add 获取高级查询条件

This commit is contained in:
lijiarao
2023-11-29 20:18:45 +08:00
parent 4e9899f583
commit e558e91ecc
5 changed files with 49 additions and 0 deletions
@@ -97,6 +97,14 @@ public class LawsDomesticController {
return Result.OK(lawsCommonService.getQueryCondition(MODULE_VALUE));
}
@AutoLog(value = "国内法规标准-获取高级查询条件")
@ApiOperation(value="国内法规标准-获取高级查询条件", notes="国内法规标准-获取高级查询条件")
@GetMapping(value = "getAdvancedQueryCondition")
@ApiOperationSupport(order = 5)
public Result<List<LawsTag>> getAdvancedQueryCondition() {
return Result.OK(lawsCommonService.getAdvancedQueryCondition(MODULE_VALUE));
}
@AutoLog(value = "国内法规标准-获取表单模型")
@ApiOperation(value="国内法规标准-获取表单模型", notes="国内法规标准-获取表单模型")
@GetMapping(value = "getFormModel")
@@ -116,6 +116,14 @@ public class LawsEnterpriseController {
return Result.OK(lawsCommonService.getQueryCondition(MODULE_VALUE));
}
@AutoLog(value = "企业法规标准-获取高级查询条件")
@ApiOperation(value="企业法规标准-获取高级查询条件", notes="企业法规标准-获取高级查询条件")
@GetMapping(value = "getAdvancedQueryCondition")
@ApiOperationSupport(order = 5)
public Result<List<LawsTag>> getAdvancedQueryCondition() {
return Result.OK(lawsCommonService.getAdvancedQueryCondition(MODULE_VALUE));
}
@AutoLog(value = "企业法规标准-获取表单模型")
@ApiOperation(value="企业法规标准-获取表单模型", notes="企业法规标准-获取表单模型")
@GetMapping(value = "getFormModel")
@@ -97,6 +97,14 @@ public class LawsOverseasController {
return Result.OK(lawsCommonService.getQueryCondition(MODULE_VALUE));
}
@AutoLog(value = "海外法规标准-获取高级查询条件")
@ApiOperation(value="海外法规标准-获取高级查询条件", notes="海外法规标准-获取高级查询条件")
@GetMapping(value = "getAdvancedQueryCondition")
@ApiOperationSupport(order = 5)
public Result<List<LawsTag>> getAdvancedQueryCondition() {
return Result.OK(lawsCommonService.getAdvancedQueryCondition(MODULE_VALUE));
}
@AutoLog(value = "海外法规标准-获取表单模型")
@ApiOperation(value="海外法规标准-获取表单模型", notes="海外法规标准-获取表单模型")
@GetMapping(value = "getFormModel")