forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBorrowForm.java
More file actions
192 lines (164 loc) · 4.19 KB
/
BorrowForm.java
File metadata and controls
192 lines (164 loc) · 4.19 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
package com.actionForm;
public class BorrowForm{
private String backTime;
private String bookBarcode;
private int bookId;
private String bookName;
private String bookcaseName;
private String borrowTime;
private Integer id;
private int ifBack;
private String operator;
private Float price;
private String pubName;
private String readerBarcode;
private int readerId;
private int degree;
private String author;
private String bookType;
private String readerName;
private String sex;
private String birthday;
private String paperType;
private String paperNo;
private String tel;
private String readerType;
public String getBackTime() {
return backTime;
}
public void setBackTime(String backTime) {
this.backTime = backTime;
}
public void setReaderId(int readerId) {
this.readerId = readerId;
}
public void setReaderBarcode(String readerBarcode) {
this.readerBarcode = readerBarcode;
}
public void setPubName(String pubName) {
this.pubName = pubName;
}
public void setPrice(Float price) {
this.price = price;
}
public void setOperator(String operator) {
this.operator = operator;
}
public void setIfBack(int ifBack) {
this.ifBack = ifBack;
}
public void setId(Integer id) {
this.id = id;
}
public void setBorrowTime(String borrowTime) {
this.borrowTime = borrowTime;
}
public void setBookcaseName(String bookcaseName) {
this.bookcaseName = bookcaseName;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
public void setBookId(int bookId) {
this.bookId = bookId;
}
public void setBookBarcode(String bookBarcode) {
this.bookBarcode = bookBarcode;
}
public void setDegree(int degree) {
this.degree=degree;
}
public String getBookBarcode() {
return bookBarcode;
}
public int getBookId() {
return bookId;
}
public String getBookName() {
return bookName;
}
public String getBookcaseName() {
return bookcaseName;
}
public String getBorrowTime() {
return borrowTime;
}
public Integer getId() {
return id;
}
public int getIfBack() {
return ifBack;
}
public String getOperator() {
return operator;
}
public Float getPrice() {
return price;
}
public String getPubName() {
return pubName;
}
public String getReaderBarcode() {
return readerBarcode;
}
public int getReaderId() {
return readerId;
}
public int getDegree() {
return degree;
}
public void setAuthor(String author) {
this.author = author;
}
public String getAuthor() {
return author;
}
public void setBookType(String bookType) {
this.bookType = bookType;
}
public String getBookType() {
return bookType;
}
public void setReaderName(String readerName) {
this.readerName = readerName;
}
public String getReaderName() {
return readerName;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getSex() {
return sex;
}
public void setBirthday(String birthday) {
this.birthday = birthday;
}
public String getBirthday() {
return birthday;
}
public void setPaperType(String paperType) {
this.paperType = paperType;
}
public String getPaperType() {
return paperType;
}
public void setPaperNo(String paperNo) {
this.paperNo = paperNo;
}
public String getPaperNo() {
return paperNo;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getTel() {
return tel;
}
public void setReaderType(String readerType) {
this.readerType =readerType;
}
public String getReaderType() {
return readerType;
}
}