package cn.iocoder.yudao.module.crm.controller.admin.customer.vo.customer; import cn.iocoder.yudao.framework.common.pojo.PageParam; import cn.iocoder.yudao.framework.common.validation.InEnum; import cn.iocoder.yudao.module.crm.enums.common.CrmSceneTypeEnum; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.ToString; @Schema(description = "管理后台 - CRM 客户分页 Request VO") @Data @EqualsAndHashCode(callSuper = true) @ToString(callSuper = true) public class CrmCustomerPageReqVO extends PageParam { /** * 联系状态 - 今日需联系 */ public static final int CONTACT_TODAY = 1; /** * 联系状态 - 已逾期 */ public static final int CONTACT_EXPIRED = 2; /** * 联系状态 - 已联系 */ public static final int CONTACT_ALREADY = 3; @Schema(description = "客户名称", example = "赵六") private String name; @Schema(description = "手机", example = "18000000000") private String mobile; @Schema(description = "所属行业", example = "1") private Integer industryId; @Schema(description = "客户等级", example = "1") private Integer level; @Schema(description = "客户来源", example = "1") private Integer source; @Schema(description = "场景类型", example = "1") @InEnum(CrmSceneTypeEnum.class) private Integer sceneType; // 场景类型,为 null 时则表示全部 @Schema(description = "是否为公海数据", requiredMode = Schema.RequiredMode.REQUIRED, example = "false") private Boolean pool; // null 则表示为不是公海数据 @Schema(description = "联系状态", example = "1") private Integer contactStatus; // backlog 查询条件 @Schema(description = "跟进状态", example = "true") private Boolean followUpStatus; }