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.
36 lines
535 B
36 lines
535 B
package com.WR.StudentMS.model;
|
|
|
|
public class TAdminlzh {
|
|
private int userId;
|
|
|
|
private String userName;
|
|
|
|
private String userPw;
|
|
|
|
|
|
public int getUserId() {
|
|
return userId;
|
|
}
|
|
|
|
public void setUserId(int userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
}
|