VideoInfo.java 2.29 KB
package com.wd.foundation.bean.mail;

import com.wd.foundation.bean.base.BaseBean;


/**
 * @ProjectName: PeopleDailyEnglish
 * @Package: com.people.entity.mail
 * @ClassName: LiveInfo
 * @Description: 描述
 * @Author: wd
 * @CreateDate: 2023/2/13 17:53
 * @UpdateUser: wd
 * @UpdateDate: 2023/2/13 17:53
 * @UpdateRemark: 更新说明:
 * @Version: 1.0
 */

public class VideoInfo extends BaseBean {
    /**
     * //	string必须 视频播放地址
     * */
    public String videoUrl;
    /**
     * //	string必须 视频时长
     * */
    public String videoDuration;
    /**
     * //	string必须1-横屏 2-竖屏
     * */
    public int videoLandScape;
    /**
     * //	string必须 首帧图
     * */
    public String firstFrameImageUri;

    /**
     * 视频宽度
     */
    public int resolutionWidth;

    /**
     * 视频高度
     */
    public int resolutionHeight;

    /**
     * 视频的类型 1.内容视频 2.appStyle(英文版专用--中文版废弃) 3.正文视频(富文本)
     */
    private String videoType;

    public String getVideoUrl() {
        return videoUrl;
    }

    public void setVideoUrl(String videoUrl) {
        this.videoUrl = videoUrl;
    }

    public String getVideoDuration() {
        return videoDuration;
    }

    public void setVideoDuration(String videoDuration) {
        this.videoDuration = videoDuration;
    }

    public int getVideoLandScape() {
        return videoLandScape;
    }

    public void setVideoLandScape(int videoLandScape) {
        this.videoLandScape = videoLandScape;
    }

    public String getFirstFrameImageUri() {
        return firstFrameImageUri;
    }

    public void setFirstFrameImageUri(String firstFrameImageUri) {
        this.firstFrameImageUri = firstFrameImageUri;
    }

    public int getResolutionWidth() {
        return resolutionWidth;
    }

    public void setResolutionWidth(int resolutionWidth) {
        this.resolutionWidth = resolutionWidth;
    }

    public int getResolutionHeight() {
        return resolutionHeight;
    }

    public void setResolutionHeight(int resolutionHeight) {
        this.resolutionHeight = resolutionHeight;
    }

    public String getVideoType() {
        return videoType;
    }

    public void setVideoType(String videoType) {
        this.videoType = videoType;
    }
}