package com.newvideo.domain;
|
|
/**
|
* 用户点击视频类型统计
|
*
|
* @author Administrator
|
*
|
*/
|
public class VideoTypeStatistics {
|
private String id;
|
private UserInfo user;
|
private VideoType videoType;
|
private String createtime;
|
|
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 VideoType getVideoType() {
|
return videoType;
|
}
|
|
public void setVideoType(VideoType videoType) {
|
this.videoType = videoType;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|