Blame view

src/nlp/whu/model/SubjectDetail.java 822 Bytes
ca4e3e24   tu   first commit
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
/**@author Sherlock_yb
 * Created time:2014年12月2日
 */
package nlp.whu.model;

/**@description:
 */
public class SubjectDetail {
	private int userId;
	private String subjectId;
	private String subjectName;
	private int subjectTypeId;
	public int getUserId() {
		return userId;
	}
	public void setUserId(int userId) {
		this.userId = userId;
	}
	public String getSubjectId() {
		return subjectId;
	}
	public void setSubjectId(String subjectId) {
		this.subjectId = subjectId;
	}
	public String getSubjectName() {
		return subjectName;
	}
	public void setSubjectName(String subjectName) {
		this.subjectName = subjectName;
	}
	public int getSubjectTypeId() {
		return subjectTypeId;
	}
	public void setSubjectTypeId(int subjectTypeId) {
		this.subjectTypeId = subjectTypeId;
	}
}