ProgramSyResponse.java 515 Bytes
package com.hui.iqiyi.response;

import lombok.Data;


@Data
public class ProgramSyResponse {

    private String day;
    //剧集
    private Integer Drama;
    //单片
    private Integer monolithic;
    //下载数量
    private Long xzNumbe;
    //下载容量
    private Double xzSize;
    //下载时长
    private Double totlDuration;

    //下载失败的数量
    private Long failSum;
    //同步未下载数量
    private Long totlSize;
    //未同步介质数量
    private Long totlFee;


}