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