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

import lombok.Data;


@Data
public class ProgramSyResponse {

    //剧集
    private Integer drama;
    //单片
    private Integer monolithic;
    //下载数量
    private Long xzNumbe;
    //下载容量
    private Double xzSize;
    //下载时长
    private Double totlDuration;
    //下载失败的数量
    private Long failSum;
    //同步未下载数量
    private Long totlSize;
    //未同步介质数量
    private Long totlFee;


}