This repository was archived by the owner on Apr 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathBooks.java
More file actions
247 lines (214 loc) · 4.63 KB
/
Books.java
File metadata and controls
247 lines (214 loc) · 4.63 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
package nyc.c4q;
import com.google.gson.annotations.Expose;
public class Books {
@Expose
private Integer id;
@Expose
private String title;
@Expose
private String author;
@Expose
private String isbn;
@Expose
private String isbn13;
@Expose
private String publisher;
@Expose
private Integer publishyear;
@Expose
private Boolean checkedout;
@Expose
private Integer checkedoutby;
@Expose
private Integer checkoutdateyear;
@Expose
private Integer checkoutdatemonth;
@Expose
private Integer checkoutdateday;
@Expose
private Integer duedateyear;
@Expose
private Integer duedatemonth;
@Expose
private Integer duedateday;
/**
* @return The id
*/
public Integer getId() {
return id;
}
/**
* @param id The id
*/
public void setId(Integer id) {
this.id = id;
}
/**
* @return The title
*/
public String getTitle() {
return title;
}
/**
* @param title The title
*/
public void setTitle(String title) {
this.title = title;
}
/**
* @return The author
*/
public String getAuthor() {
return author;
}
/**
* @param author The author
*/
public void setAuthor(String author) {
this.author = author;
}
/**
* @return The isbn
*/
public String getIsbn() {
return isbn;
}
/**
* @param isbn The isbn
*/
public void setIsbn(String isbn) {
this.isbn = isbn;
}
/**
* @return The isbn13
*/
public String getIsbn13() {
return isbn13;
}
/**
* @param isbn13 The isbn13
*/
public void setIsbn13(String isbn13) {
this.isbn13 = isbn13;
}
/**
* @return The publisher
*/
public String getPublisher() {
return publisher;
}
/**
* @param publisher The publisher
*/
public void setPublisher(String publisher) {
this.publisher = publisher;
}
/**
* @return The publishyear
*/
public Integer getPublishyear() {
return publishyear;
}
/**
* @param publishyear The publishyear
*/
public void setPublishyear(Integer publishyear) {
this.publishyear = publishyear;
}
/**
* @return The checkedout
*/
public Boolean getCheckedout() {
return checkedout;
}
/**
* @param checkedout The checkedout
*/
public void setCheckedout(Boolean checkedout) {
this.checkedout = checkedout;
}
/**
* @return The checkedoutby
*/
public Integer getCheckedoutby() {
return checkedoutby;
}
/**
* @param checkedoutby The checkedoutby
*/
public void setCheckedoutby(Integer checkedoutby) {
this.checkedoutby = checkedoutby;
}
/**
* @return The checkoutdateyear
*/
public Integer getCheckoutdateyear() {
return checkoutdateyear;
}
/**
* @param checkoutdateyear The checkoutdateyear
*/
public void setCheckoutdateyear(Integer checkoutdateyear) {
this.checkoutdateyear = checkoutdateyear;
}
/**
* @return The checkoutdatemonth
*/
public Integer getCheckoutdatemonth() {
return checkoutdatemonth;
}
/**
* @param checkoutdatemonth The checkoutdatemonth
*/
public void setCheckoutdatemonth(Integer checkoutdatemonth) {
this.checkoutdatemonth = checkoutdatemonth;
}
/**
* @return The checkoutdateday
*/
public Integer getCheckoutdateday() {
return checkoutdateday;
}
/**
* @param checkoutdateday The checkoutdateday
*/
public void setCheckoutdateday(Integer checkoutdateday) {
this.checkoutdateday = checkoutdateday;
}
/**
* @return The duedateyear
*/
public Integer getDuedateyear() {
return duedateyear;
}
/**
* @param duedateyear The duedateyear
*/
public void setDuedateyear(Integer duedateyear) {
this.duedateyear = duedateyear;
}
/**
* @return The duedatemonth
*/
public Integer getDuedatemonth() {
return duedatemonth;
}
/**
* @param duedatemonth The duedatemonth
*/
public void setDuedatemonth(Integer duedatemonth) {
this.duedatemonth = duedatemonth;
}
/**
* @return The duedateday
*/
public Integer getDuedateday() {
return duedateday;
}
/**
* @param duedateday The duedateday
*/
public void setDuedateday(Integer duedateday) {
this.duedateday = duedateday;
}
}