package com.yeshi.buwan.domain;
|
|
import javax.persistence.Entity;
|
import javax.persistence.ManyToOne;
|
|
/**
|
* 视频播放错误
|
*
|
* @author Administrator
|
*
|
*/
|
@Entity
|
public class VideoPlayError {
|
private String id;
|
@ManyToOne
|
private UserInfo user;
|
private String createtime;
|
private String question;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public UserInfo getUser() {
|
return user;
|
}
|
|
public void setUser(UserInfo user) {
|
this.user = user;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
public String getQuestion() {
|
return question;
|
}
|
|
public void setQuestion(String question) {
|
this.question = question;
|
}
|
|
}
|