package com.yanzuoguang.util.vo.file;

import io.swagger.annotations.ApiModelProperty;


/**
 * 获取文件的大小
 *
 * @author 颜佐光
 */
public class YzgFileVideoImageItemReqVo extends YzgFileConvertBase {

    @ApiModelProperty(notes = "目标文件")
    private String to;

    public YzgFileVideoImageItemReqVo() {
    }

    public YzgFileVideoImageItemReqVo(String to, YzgFileConvertBase from) {
        super(from.size, from.quote, from.width, from.height, from.bitrate);
        this.to = to;
    }

    public YzgFileVideoImageItemReqVo(String to, float size, float quote, int width, int height, int bitrate) {
        super(size, quote, width, height, bitrate);
        this.to = to;
    }

    public String getTo() {
        return to;
    }

    public void setTo(String to) {
        this.to = to;
    }
}