forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathManagerForm.java
More file actions
66 lines (59 loc) · 1.53 KB
/
ManagerForm.java
File metadata and controls
66 lines (59 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.actionForm;
public class ManagerForm {
private Integer id=new Integer(-1); //管理员ID号
private String name=""; //管理员名称
private String pwd=""; //管理员密码
private int sysset=0; //系统设置权限
private int readerset=0; //读者管理权限
private int bookset=0; //图书管理权限
private int borrowback=0; //图书借还权限
private int sysquery=0; //系统查询权限
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public void setPwd(String pwd) {
this.pwd = pwd;
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
public String getPwd() {
return pwd;
}
public void setSysset(int sysset){
this.sysset=sysset;
}
public int getSysset(){
return sysset;
}
public int getReaderset(){
return readerset;
}
public void setReaderset(int readerset){
this.readerset=readerset;
}
public void setBookset(int bookset){
this.bookset=bookset;
}
public int getBookset(){
return bookset;
}
public void setBorrowback(int borrowback){
this.borrowback=borrowback;
}
public int getBorrowback(){
return borrowback;
}
public void setSysquery(int sysquery){
this.sysquery=sysquery;
}
public int getSysquery(){
return sysquery;
}
}