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
32
33
34
35
36
37
38
39
40
| package cn.org.xinke.entity;
|
| /**
| * @description 账户实体
| * @author cinco
| * @date 2019-1-21
| */
| public class User {
|
| /**
| * 账户
| */
| private String uname;
|
| /**
| * 密码
| */
| private String pwd;
|
| public User(String uname, String pwd) {
| this.uname = uname;
| this.pwd = pwd;
| }
|
| public String getUname() {
| return uname;
| }
|
| public void setUname(String uname) {
| this.uname = uname;
| }
|
| public String getPwd() {
| return pwd;
| }
|
| public void setPwd(String pwd) {
| this.pwd = pwd;
| }
| }
|
|