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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package model ;
public class Admin {
private Integer aid ;
private java . lang . String name ;
private java . lang . String password ;
private java . lang . Integer role ; //角色, 0超级管理员 1系统管理员
public Admin ( ) {
}
public Integer getAid ( ) {
return aid ;
}
public void setAid ( Integer aid ) {
this . aid = aid ;
}
public java . lang . String getName ( ) {
return name ;
}
public void setName ( java . lang . String name ) {
this . name = name ;
}
public java . lang . String getPassword ( ) {
return password ;
}
public void setPassword ( java . lang . String password ) {
this . password = password ;
}
public java . lang . Integer getRole ( ) {
return role ;
}
public void setRole ( java . lang . Integer role ) {
this . role = role ;
}
}