All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ksc.cdn.model.statistic.playtime.WatchLengthDataByDomain Maven / Gradle / Ivy

The newest version!
package com.ksc.cdn.model.statistic.playtime;

import java.util.List;

/**
 * Created by JIANGYANG1 on 2017/3/14.
 */
public class WatchLengthDataByDomain {
    /**
     * 域名id
     */
    private String DomainId;
    /**
     * 访问次数总和
     */
    private Long TotalSv;
    /**
     * 总播放时长
     */
    private Long TotalPlayTime;
    /**
     * 平均播放时长,单位毫秒
     */
    private Long PlayTime;

    /**
     * 该域名在每个区域的详细观看时长数据
     */
    private List Regions;

    public String getDomainId() {
        return DomainId;
    }

    public void setDomainId(String domainId) {
        DomainId = domainId;
    }

    public Long getTotalSv() {
        return TotalSv;
    }

    public void setTotalSv(Long totalSv) {
        TotalSv = totalSv;
    }

    public Long getTotalPlayTime() {
        return TotalPlayTime;
    }

    public void setTotalPlayTime(Long totalPlayTime) {
        TotalPlayTime = totalPlayTime;
    }

    public Long getPlayTime() {
        return PlayTime;
    }

    public void setPlayTime(Long playTime) {
        PlayTime = playTime;
    }

    public List getRegions() {
        return Regions;
    }

    public void setRegions(List regions) {
        Regions = regions;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy