保誠-保戶業務員媒合平台
wayne
2021-11-23 a8b21cd919b76a548b77ef0ec2d8aee28c8e6b0e
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 EServiceLoginVM {
    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;
    }
}