保誠-保戶業務員媒合平台
HelenHuang
2021-11-15 b7de9faedf2a3e21c77c4ab3fc645ef01ac549cf
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 EServiceRequestVM {
    private String username;
    private String password;
 
    public String getUsername() {
        return username;
    }
 
    public void setUsername(String username) {
        this.username = username;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
}