Results 1 comments of pwcs

![QQ截图20221013095637](https://user-images.githubusercontent.com/220381/195480848-e0995e19-3bbe-4af9-8882-ee725facf835.png) ![QQ截图20221013095622](https://user-images.githubusercontent.com/220381/195480851-2e3a4e60-b7aa-4f7e-8c6b-80535efdb901.png) 增加一个过滤器就有了,我的是net6 ,希望对大家有帮助 public class SwaggerSchemaFilter : ISchemaFilter { public void Apply(OpenApiSchema schema, SchemaFilterContext context) { if (context.Type.IsEnum) { StringBuilder stringBuilder = new StringBuilder(); Enum.GetNames(context.Type) .ToList() .ForEach(name => {...