docs: 完善公共模块相关接口文档信息

This commit is contained in:
2023-08-15 00:23:58 +08:00
parent 90af86a04b
commit 190385ed36
7 changed files with 15 additions and 15 deletions

View File

@@ -68,8 +68,7 @@ public class GeneratorController {
@Parameters({
@Parameter(name = "tableName", description = "表名称", required = true, example = "sys_user",
in = ParameterIn.PATH),
@Parameter(name = "requireSync", description = "是否需要同步", example = "true",
in = ParameterIn.QUERY)})
@Parameter(name = "requireSync", description = "是否需要同步", example = "true", in = ParameterIn.QUERY)})
@GetMapping("/field/{tableName}")
public R<List<FieldConfigDO>> listFieldConfig(@PathVariable String tableName,
@RequestParam(required = false, defaultValue = "false") Boolean requireSync) {