forked from cmzalvin/giit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangedItems.java
More file actions
155 lines (116 loc) · 3.32 KB
/
ChangedItems.java
File metadata and controls
155 lines (116 loc) · 3.32 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
package com.giit.www.entity.custom;
import java.util.List;
/**
* Created by c0de8ug on 16-2-15.
*/
public class ChangedItems {
int secId;
public int getSecID() {
return secId;
}
public void setSecID(int secId) {
this.secId = secId;
}
public List<AlterItem> getAlterItemList() {
return alterItemList;
}
public void setAlterItemList(List<AlterItem> alterItemList) {
this.alterItemList = alterItemList;
}
public List<DeleteItem> getDeleteItemList() {
return deleteItemList;
}
public void setDeleteItemList(List<DeleteItem> deleteItemList) {
this.deleteItemList = deleteItemList;
}
List<AlterItem> alterItemList;
List<DeleteItem> deleteItemList;
public static class AlterItem {
public String getBookTitle() {
return bookTitle;
}
public void setBookTitle(String bookTitle) {
this.bookTitle = bookTitle;
}
public String getIsbn() {
return isbn;
}
public void setIsbn(String isbn) {
this.isbn = isbn;
}
public String getNewBookTitle() {
return newBookTitle;
}
public void setNewBookTitle(String newBookTitle) {
this.newBookTitle = newBookTitle;
}
public String getNewIsbn() {
return newIsbn;
}
public void setNewIsbn(String newIsbn) {
this.newIsbn = newIsbn;
}
public String getNewDateOfPrinting() {
return newDateOfPrinting;
}
public void setNewDateOfPrinting(String newDateOfPrinting) {
this.newDateOfPrinting = newDateOfPrinting;
}
public String getNewAuthor() {
return newAuthor;
}
public void setNewAuthor(String newAuthor) {
this.newAuthor = newAuthor;
}
public String getNewPress() {
return newPress;
}
public void setNewPress(String newPress) {
this.newPress = newPress;
}
public String getNewCategory() {
return newCategory;
}
public void setNewCategory(String newCategory) {
this.newCategory = newCategory;
}
public String getNewUnitPrice() {
return newUnitPrice;
}
public void setNewUnitPrice(String newUnitPrice) {
this.newUnitPrice = newUnitPrice;
}
public String getNewRemark() {
return newRemark;
}
public void setNewRemark(String newRemark) {
this.newRemark = newRemark;
}
String bookTitle;
String isbn;
String newBookTitle;
String newIsbn;
String newDateOfPrinting;
String newAuthor;
String newPress;
String newCategory;
String newUnitPrice;
String newRemark;
}
public static class DeleteItem {
public String getBookTitle() {
return bookTitle;
}
public void setBookTitle(String bookTitle) {
this.bookTitle = bookTitle;
}
public String getIsbn() {
return isbn;
}
public void setIsbn(String isbn) {
this.isbn = isbn;
}
String bookTitle;
String isbn;
}
}