提交 | 用户 | 时间
|
a6316e
|
1 |
package com.billion.common.core.domain.model; |
A |
2 |
|
|
3 |
/** |
|
4 |
* 用户登录对象 |
|
5 |
* |
|
6 |
* @author ruoyi |
|
7 |
*/ |
|
8 |
public class LoginBody |
|
9 |
{ |
|
10 |
/** |
|
11 |
* 用户名 |
|
12 |
*/ |
|
13 |
private String username; |
|
14 |
|
|
15 |
/** |
|
16 |
* 用户密码 |
|
17 |
*/ |
|
18 |
private String password; |
|
19 |
|
|
20 |
/** |
|
21 |
* 验证码 |
|
22 |
*/ |
|
23 |
private String code; |
|
24 |
|
|
25 |
/** |
|
26 |
* 唯一标识 |
|
27 |
*/ |
|
28 |
private String uuid; |
|
29 |
|
|
30 |
public String getUsername() |
|
31 |
{ |
|
32 |
return username; |
|
33 |
} |
|
34 |
|
|
35 |
public void setUsername(String username) |
|
36 |
{ |
|
37 |
this.username = username; |
|
38 |
} |
|
39 |
|
|
40 |
public String getPassword() |
|
41 |
{ |
|
42 |
return password; |
|
43 |
} |
|
44 |
|
|
45 |
public void setPassword(String password) |
|
46 |
{ |
|
47 |
this.password = password; |
|
48 |
} |
|
49 |
|
|
50 |
public String getCode() |
|
51 |
{ |
|
52 |
return code; |
|
53 |
} |
|
54 |
|
|
55 |
public void setCode(String code) |
|
56 |
{ |
|
57 |
this.code = code; |
|
58 |
} |
|
59 |
|
|
60 |
public String getUuid() |
|
61 |
{ |
|
62 |
return uuid; |
|
63 |
} |
|
64 |
|
|
65 |
public void setUuid(String uuid) |
|
66 |
{ |
|
67 |
this.uuid = uuid; |
|
68 |
} |
|
69 |
} |