docs: 完善接口文档信息

This commit is contained in:
2023-08-23 21:44:12 +08:00
parent 5e7ba01a18
commit 58e838d5f9
18 changed files with 55 additions and 42 deletions

View File

@@ -122,13 +122,14 @@ public class FieldConfigDO implements Serializable {
/**
* 表单类型
*/
@Schema(description = "表单类型", example = "1")
@Schema(description = "表单类型", type = "Integer", allowableValues = {"1", "2", "3", "4", "5", "6"}, example = "1")
private FormTypeEnum formType;
/**
* 查询方式
*/
@Schema(description = "查询方式", example = "1")
@Schema(description = "查询方式", type = "Integer",
allowableValues = {"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14"}, example = "1")
private QueryTypeEnum queryType;
/**