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.
59 lines
1.0 KiB
59 lines
1.0 KiB
package com.example.entity;
|
|
|
|
public class Course {
|
|
private Integer id;
|
|
private String name;
|
|
private String no;
|
|
private String descr;
|
|
private String times;
|
|
private String teacher;
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getNo() {
|
|
return no;
|
|
}
|
|
|
|
public void setNo(String no) {
|
|
this.no = no;
|
|
}
|
|
|
|
public String getDescr() {
|
|
return descr;
|
|
}
|
|
|
|
public void setDescr(String descr) {
|
|
this.descr = descr;
|
|
}
|
|
|
|
public String getTimes() {
|
|
return times;
|
|
}
|
|
|
|
public void setTimes(String times) {
|
|
this.times = times;
|
|
}
|
|
|
|
public String getTeacher() {
|
|
return teacher;
|
|
}
|
|
|
|
public void setTeacher(String teacher) {
|
|
this.teacher = teacher;
|
|
}
|
|
}
|