You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
770 B
34 lines
770 B
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;
|
|
}
|
|
}
|