保誠-保戶業務員媒合平台
wayne
2021-11-30 3d4d6480a947f2f6e032b7b4b7d04c2744115ad7
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
46
47
48
49
50
51
52
53
package com.pollex.pam.service.dto;
 
import com.pollex.pam.enums.OtpLoginTypeEnum;
 
public class CustomerRegisterDTO {
    
    private String name;
    private String phone;
    private String email;
    private OtpLoginTypeEnum contactType;
    private String indexKey;
    private String otpCode;
    
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getPhone() {
        return phone;
    }
    public void setPhone(String phone) {
        this.phone = phone;
    }
    public String getEmail() {
        return email;
    }
    public void setEmail(String email) {
        this.email = email;
    }
    public OtpLoginTypeEnum getContactType() {
        return contactType;
    }
    public void setContactType(OtpLoginTypeEnum contactType) {
        this.contactType = contactType;
    }
    public String getIndexKey() {
        return indexKey;
    }
    public void setIndexKey(String indexKey) {
        this.indexKey = indexKey;
    }
    public String getOtpCode() {
        return otpCode;
    }
    public void setOtpCode(String otpCode) {
        this.otpCode = otpCode;
    }
    
    
    
}