保誠-保戶業務員媒合平台
Jack
2021-11-15 de3ef242f52fa430d97ea62758bf7b624522fab6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.pollex.pam.web.rest.vm;
 
public class VerifyOtpVM {
    private String identityCode;
    private String otpCode;
 
    public String getIdentityCode() {
        return identityCode;
    }
 
    public void setIdentityCode(String identityCode) {
        this.identityCode = identityCode;
    }
 
    public String getOtpCode() {
        return otpCode;
    }
 
    public void setOtpCode(String otpCode) {
        this.otpCode = otpCode;
    }
}