feat(HjmCarParam): 添加组织ID集查询功能

- 引入java.util.Set导入支持
- 新增organizationIds字段用于组织ID集合查询
- 添加@Schema注解描述组织ID集功能
- 配置@QueryField注解支持IN查询类型
This commit is contained in:
2026-01-13 15:22:24 +08:00
parent 4d7f871aad
commit f0cd200e21

View File

@@ -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<Integer> organizationIds;
@Schema(description = "父级组织ID")
@QueryField(type = QueryType.EQ)
private Integer organizationParentId;