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;