added topic code and topic description
This commit is contained in:
parent
15af1f527e
commit
6b50226f3b
|
@ -6,6 +6,8 @@ import java.io.Serializable;
|
|||
public class ProjectSubset implements Serializable {
|
||||
|
||||
private String code;
|
||||
private String topiccode;
|
||||
private String topicdescription;
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
|
@ -14,4 +16,20 @@ public class ProjectSubset implements Serializable {
|
|||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getTopiccode() {
|
||||
return topiccode;
|
||||
}
|
||||
|
||||
public void setTopiccode(String topiccode) {
|
||||
this.topiccode = topiccode;
|
||||
}
|
||||
|
||||
public String getTopicdescription() {
|
||||
return topicdescription;
|
||||
}
|
||||
|
||||
public void setTopicdescription(String topicdescription) {
|
||||
this.topicdescription = topicdescription;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue