diff --git a/TAdminlzh.java b/TAdminlzh.java new file mode 100644 index 0000000..0bb80ca --- /dev/null +++ b/TAdminlzh.java @@ -0,0 +1,35 @@ +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; + } + +}