package com.newvideo.domain.push; import com.newvideo.domain.VideoInfo; public class VideoPushHistory { private String id; private VideoInfo videoInfo; private String tag; private String resourceId; private String detailId; private String createtime; private String pushtime; private String type; public String getType() { return type; } public void setType(String type) { this.type = type; } public String getId() { return id; } public void setId(String id) { this.id = id; } public VideoInfo getVideoInfo() { return videoInfo; } public void setVideoInfo(VideoInfo videoInfo) { this.videoInfo = videoInfo; } public String getTag() { return tag; } public void setTag(String tag) { this.tag = tag; } public String getResourceId() { return resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getDetailId() { return detailId; } public void setDetailId(String detailId) { this.detailId = detailId; } public String getCreatetime() { return createtime; } public void setCreatetime(String createtime) { this.createtime = createtime; } public String getPushtime() { return pushtime; } public void setPushtime(String pushtime) { this.pushtime = pushtime; } }