Browse Source

优化说明

zhou-hao 4 years ago
parent
commit
a9f8c48b23

+ 2 - 2
hsweb-commons/hsweb-commons-api/src/main/java/org/hswebframework/web/api/crud/entity/QueryParamEntity.java

@@ -71,13 +71,13 @@ public class QueryParamEntity extends QueryParam {
     }
 
     @Override
-    @Schema(description = "指定要查询的列,多列使用逗号分隔")
+    @Schema(description = "指定要查询的列")
     public Set<String> getIncludes() {
         return super.getIncludes();
     }
 
     @Override
-    @Schema(description = "指定不查询的列,多列使用逗号分隔")
+    @Schema(description = "指定不查询的列")
     public Set<String> getExcludes() {
         return super.getExcludes();
     }