-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdictionaryManage.java
More file actions
41 lines (38 loc) · 1.01 KB
/
dictionaryManage.java
File metadata and controls
41 lines (38 loc) · 1.01 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
package com.nxdcms.entity;
public class dictionaryManage {
private String dictionaryId;
private String className;
private String chineseName;
public String getDictionaryId() {
return dictionaryId;
}
public void setDictionaryId(String dictionaryId) {
this.dictionaryId = dictionaryId;
}
public String getClassName() {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public String getChineseName() {
return chineseName;
}
public void setChineseName(String chineseName) {
this.chineseName = chineseName;
}
@Override
public String toString() {
return "dictionaryManage [dictionaryId=" + dictionaryId + ", className=" + className + ", chineseName="
+ chineseName + "]";
}
public dictionaryManage(String dictionaryId, String className, String chineseName) {
super();
this.dictionaryId = dictionaryId;
this.className = className;
this.chineseName = chineseName;
}
public dictionaryManage() {
// TODO Auto-generated constructor stub
}
}