package com.qxueyou.scc.teach.subject.model.view;
|
// Generated 2018-3-19 20:40:08 by Hibernate Tools 5.2.8.Final
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
/**
|
* MySubjectV generated by hbm2java
|
*/
|
@Entity
|
@Table(name = "lecture_video_v")
|
public class LectureVideoV implements java.io.Serializable {
|
|
private static final long serialVersionUID = -4081977427286253454L;
|
|
private String lectureId;
|
private String name;
|
private int seconds;
|
|
public LectureVideoV() {
|
}
|
|
@Id
|
@Column(name="LECTURE_ID")
|
public String getLectureId() {
|
return this.lectureId;
|
}
|
|
public void setLectureId(String lectureId) {
|
this.lectureId = lectureId;
|
}
|
|
@Column(name="NAME")
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
@Column(name="VIDEO_SECONDS")
|
public int getSeconds() {
|
return seconds;
|
}
|
|
public void setSeconds(int seconds) {
|
this.seconds = seconds;
|
}
|
}
|