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
| package com.taoke.autopay.android.data.local.entity;
|
| public class LoginAccount {
| private String account;
| private String pwd;
|
| public LoginAccount() {
|
| }
|
| public LoginAccount(String account, String pwd) {
| this.account = account;
| this.pwd = pwd;
| }
|
| public String getAccount() {
| return account;
| }
|
| public void setAccount(String account) {
| this.account = account;
| }
|
| public String getPwd() {
| return pwd;
| }
|
| public void setPwd(String pwd) {
| this.pwd = pwd;
| }
| }
|
|