实现登录日志记录

This commit is contained in:
F嘉阳
2018-02-06 11:44:00 +08:00
parent 3d81836e0e
commit af1eca10bb
18 changed files with 460 additions and 2 deletions

View File

@@ -0,0 +1,51 @@
package com.fjy.spring.domain;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import java.sql.Timestamp;
@Entity
public class TbCourse {
@Id
@GeneratedValue
private Integer courseNo;
private String courseName;
private Timestamp courseTime;
private Integer teacherid;
public Integer getCourseNo() {
return courseNo;
}
public void setCourseNo(Integer courseNo) {
this.courseNo = courseNo;
}
public String getCourseName() {
return courseName;
}
public void setCourseName(String courseName) {
this.courseName = courseName;
}
public Timestamp getCourseTime() {
return courseTime;
}
public void setCourseTime(Timestamp courseTime) {
this.courseTime = courseTime;
}
public Integer getTeacherid() {
return teacherid;
}
public void setTeacherid(Integer teacherid) {
this.teacherid = teacherid;
}
}