ModulesBean.java
4.3 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
package com.huaheng.wms.menu;
import android.os.Parcel;
import android.os.Parcelable;
import com.huaheng.wms.work.login.UserBean;
import org.greenrobot.greendao.annotation.Entity;
import org.greenrobot.greendao.annotation.Id;
import org.greenrobot.greendao.annotation.Generated;
@Entity
public class ModulesBean {
@Id
private long _id;
private String moduleName;
private String id;
private String type;
private String parentId;
private String url;
@Generated(hash = 1764176482)
public ModulesBean(long _id, String moduleName, String id, String type, String parentId,
String url) {
this._id = _id;
this.moduleName = moduleName;
this.id = id;
this.type = type;
this.parentId = parentId;
this.url = url;
}
@Generated(hash = 1678227107)
public ModulesBean() {
}
public long get_id() {
return this._id;
}
public void set_id(long _id) {
this._id = _id;
}
public String getModuleName() {
return this.moduleName;
}
public void setModuleName(String moduleName) {
this.moduleName = moduleName;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getParentId() {
return this.parentId;
}
public void setParentId(String parentId) {
this.parentId = parentId;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public String toString() {
return "ModulesBean{" +
"_id=" + _id +
", moduleName='" + moduleName + '\'' +
", id='" + id + '\'' +
", type='" + type + '\'' +
", parentId='" + parentId + '\'' +
", url='" + url + '\'' +
'}';
}
// public ModulesBean(String moduleName, String id, String type, String parentId, String url) {
// this.moduleName = moduleName;
// this.id = id;
// this.type = type;
// this.parentId = parentId;
// this.url = url;
// }
//
// public String getModuleName() {
// return moduleName;
// }
//
// public void setModuleName(String moduleName) {
// this.moduleName = moduleName;
// }
//
// public String getId() {
// return id;
// }
//
// public void setId(String id) {
// this.id = id;
// }
//
// public String getType() {
// return type;
// }
//
// public void setType(String type) {
// this.type = type;
// }
//
// public String getParentId() {
// return parentId;
// }
//
// public void setParentId(String parentId) {
// this.parentId = parentId;
// }
//
// public String getUrl() {
// return url;
// }
//
// public void setUrl(String url) {
// this.url = url;
// }
//
// @Override
// public String toString() {
// return "ModulesBean{" +
// "moduleName='" + moduleName + '\'' +
// ", id='" + id + '\'' +
// ", type='" + type + '\'' +
// ", parentId='" + parentId + '\'' +
// ", url='" + url + '\'' +
// '}';
// }
//
// @Override
// public int describeContents() {
// return 0;
// }
//
// @Override
// public void writeToParcel(Parcel parcel, int i) {
// parcel.writeString(moduleName);
// parcel.writeString(id);
// parcel.writeString(type);
// parcel.writeString(parentId);
// parcel.writeString(url);
// }
//
// public static final Parcelable.Creator<ModulesBean> CREATOR
// = new Parcelable.Creator<ModulesBean>() {
// public ModulesBean createFromParcel(Parcel in) {
// return new ModulesBean(in);
// }
//
// public ModulesBean[] newArray(int size) {
// return new ModulesBean[size];
// }
// };
//
// private ModulesBean(Parcel in) {
// moduleName = in.readString();
// id = in.readString();
// type = in.readString();
// parentId = in.readString();
// url = in.readString();
// }
}