You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
827 B
42 lines
827 B
package domain;
|
|
|
|
public class CDC {
|
|
|
|
private String college;
|
|
private String department;
|
|
private String cclass;
|
|
|
|
public String getCollege() {
|
|
return college;
|
|
}
|
|
|
|
public void setCollege(String college) {
|
|
this.college = college;
|
|
}
|
|
|
|
public String getDepartment() {
|
|
return department;
|
|
}
|
|
|
|
public void setDepartment(String department) {
|
|
this.department = department;
|
|
}
|
|
|
|
public String getCclass() {
|
|
return cclass;
|
|
}
|
|
|
|
public void setCclass(String cclass) {
|
|
this.cclass = cclass;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "CDC{" +
|
|
"college='" + college + '\'' +
|
|
", department='" + department + '\'' +
|
|
", cclass='" + cclass + '\'' +
|
|
'}';
|
|
}
|
|
}
|