mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-08 12:57:13 +08:00
fix: 修复查询租户套餐菜单树数据异常
-将 @Query 注解的 columns属性从数组修改为单个字段,以符合 NOT_IN 查询类型的要求
This commit is contained in:
@@ -62,6 +62,6 @@ public class MenuQuery implements Serializable {
|
||||
* 排除的菜单 ID 列表
|
||||
*/
|
||||
@Schema(hidden = true, description = "菜单 ID 列表", example = "[9000]")
|
||||
@Query(columns = {"id", "parent_id"}, type = QueryType.NOT_IN)
|
||||
@Query(columns = "id", type = QueryType.NOT_IN)
|
||||
private List<Long> excludeMenuIdList;
|
||||
}
|
||||
|
Reference in New Issue
Block a user