From f0cd200e218b10e9bd3de46f357c2de38eaf726e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Tue, 13 Jan 2026 15:22:24 +0800 Subject: [PATCH] =?UTF-8?q?feat(HjmCarParam):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E7=BB=84=E7=BB=87ID=E9=9B=86=E6=9F=A5=E8=AF=A2=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 引入java.util.Set导入支持 - 新增organizationIds字段用于组织ID集合查询 - 添加@Schema注解描述组织ID集功能 - 配置@QueryField注解支持IN查询类型 --- src/main/java/com/gxwebsoft/hjm/param/HjmCarParam.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/com/gxwebsoft/hjm/param/HjmCarParam.java b/src/main/java/com/gxwebsoft/hjm/param/HjmCarParam.java index abe815f..923dfaf 100644 --- a/src/main/java/com/gxwebsoft/hjm/param/HjmCarParam.java +++ b/src/main/java/com/gxwebsoft/hjm/param/HjmCarParam.java @@ -1,6 +1,8 @@ package com.gxwebsoft.hjm.param; import java.math.BigDecimal; +import java.util.Set; + import com.gxwebsoft.common.core.annotation.QueryField; import com.gxwebsoft.common.core.annotation.QueryType; import com.gxwebsoft.common.core.web.BaseParam; @@ -86,6 +88,10 @@ public class HjmCarParam extends BaseParam { @QueryField(type = QueryType.EQ) private Integer organizationId; + @Schema(description = "组织ID集") + @QueryField(type = QueryType.IN) + private Set organizationIds; + @Schema(description = "父级组织ID") @QueryField(type = QueryType.EQ) private Integer organizationParentId;