Video.java 1.71 KB
package cn.bxe.updatevideo.model.original;

public class Video {
    private Integer id;
    private Integer chapterID;
    private Integer moduleID;
    private String videoName;
    private String url;
    private String timeDuration;
    private Integer sortIndex;

    @Override
    public String toString() {
        return "Video{" +
                "id=" + id +
                ", chapterID=" + chapterID +
                ", moduleID=" + moduleID +
                ", videoName='" + videoName + '\'' +
                ", url='" + url + '\'' +
                ", timeDuration='" + timeDuration + '\'' +
                ", sortIndex=" + sortIndex +
                '}';
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getChapterID() {
        return chapterID;
    }

    public void setChapterID(Integer chapterID) {
        this.chapterID = chapterID;
    }

    public Integer getModuleID() {
        return moduleID;
    }

    public void setModuleID(Integer moduleID) {
        this.moduleID = moduleID;
    }

    public String getVideoName() {
        return videoName;
    }

    public void setVideoName(String videoName) {
        this.videoName = videoName;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public String getTimeDuration() {
        return timeDuration;
    }

    public void setTimeDuration(String timeDuration) {
        this.timeDuration = timeDuration;
    }

    public Integer getSortIndex() {
        return sortIndex;
    }

    public void setSortIndex(Integer sortIndex) {
        this.sortIndex = sortIndex;
    }
}