parent
89ad1dabc5
commit
12a2686933
@ -1,33 +0,0 @@
|
||||
package com.itbaizhan.orm;
|
||||
|
||||
import com.mysql.cj.x.protobuf.MysqlxDatatypes;
|
||||
|
||||
public class TAdmin { // 管理员类
|
||||
private int userId; // 管理员用户ID
|
||||
private String userName; // 管理员用户名
|
||||
private String userPw; // 管理员密码
|
||||
|
||||
public String getUserName() { // 获取管理员用户名
|
||||
return userName;
|
||||
}
|
||||
|
||||
public void setUserName(String userName) { // 设置管理员用户名
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getUserPw() { // 获取管理员密码
|
||||
return userPw;
|
||||
}
|
||||
|
||||
public void setUserPw(String userPw) { // 设置管理员密码
|
||||
this.userPw = userPw;
|
||||
}
|
||||
|
||||
public int getUserId() { // 获取管理员用户ID
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(int userId) { // 设置管理员用户ID
|
||||
this.userId = userId;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue