10 天以前 d5cd948848595b0cffe098ba542a9c879b0f9165
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package cn.iocoder.yudao.module.crm.controller.admin.contact.vo;
 
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 CrmContactPageReqVO extends PageParam {
 
    @Schema(description = "姓名", example = "芋艿")
    private String name;
 
    @Schema(description = "客户编号", example = "10795")
    private Long customerId;
 
    @Schema(description = "手机号", example = "13898273941")
    private String mobile;
 
    @Schema(description = "电话", example = "021-383773")
    private String telephone;
 
    @Schema(description = "电子邮箱", example = "111@22.com")
    private String email;
 
    @Schema(description = "QQ", example = "3882872")
    private Long qq;
 
    @Schema(description = "微信", example = "zzZ98373")
    private String wechat;
 
    @Schema(description = "场景类型", example = "1")
    @InEnum(CrmSceneTypeEnum.class)
    private Integer sceneType; // 场景类型,为 null 时则表示全部
 
    @Schema(description = "商机编号", example = "10430")
    private Long businessId;
 
}