FirmInfoQuery.java 842 B

1234567891011121314151617181920212223242526272829303132
  1. package com.zsElectric.boot.business.model.query;
  2. import com.zsElectric.boot.common.base.BasePageQuery;
  3. import io.swagger.v3.oas.annotations.media.Schema;
  4. import lombok.Getter;
  5. import lombok.Setter;
  6. import java.time.LocalDateTime;
  7. import java.util.List;
  8. /**
  9. * 企业信息分页查询对象
  10. *
  11. * @author zsElectric
  12. * @since 2025-12-11 10:10
  13. */
  14. @Schema(description ="企业信息查询对象")
  15. @Getter
  16. @Setter
  17. public class FirmInfoQuery extends BasePageQuery {
  18. @Schema(description = "企业名称")
  19. private String name;
  20. @Schema(description = "类型(1-企业 2-渠道)")
  21. private Integer firmType;
  22. @Schema(description = "上下线状态(0 已下线 1 上线中)")
  23. private Integer status;
  24. @Schema(description = "部门ID(用于三方用户筛选自己所属公司)")
  25. private Long deptId;
  26. }