保誠-保戶業務員媒合平台
Jack
2021-11-14 0d3fcf60fec51cb3c2a8b06e41d61291d79c3470
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;
    }
}