me.chanjar.weixin.channel.bean.live.dashboard.OnAir Maven / Gradle / Ivy
package me.chanjar.weixin.channel.bean.live.dashboard;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
 * 在播内容力数据
 *
 * @author Winnie
 */
@Data
@NoArgsConstructor
public class OnAir implements Serializable {
  private static final long serialVersionUID = 6354207471314033499L;
  /**
   * 曝光有效CTR(万分比)
   */
  @JsonProperty("recommend_effective_new_watch_2_uv_over_impression_uv")
  private OnAirIndexItem recommendEffectiveNewWatch2UvOverImpressionUv;
  /**
   * 人均看播时长
   */
  @JsonProperty("average_watch_seconds")
  private OnAirIndexItem averageWatchSeconds;
  /**
   * 评论率(万分比)
   */
  @JsonProperty("comment_uv_over_new_watch_uv")
  private OnAirIndexItem commentUvOverNewWatchUv;
  /**
   * 点赞率(万分比)
   */
  @JsonProperty("like_uv_over_new_watch_uv")
  private OnAirIndexItem likeUvOverNewWatchUv;
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy