VideoVo.java 1.41 KB
package com.viontech.vo;

import java.io.File;
import org.springframework.web.multipart.MultipartFile;

public class VideoVo {
    private String refid;

    private String format;

    private MultipartFile file;

    private String pic_refid;

    private String location_id;

    private String video_path;

    private File tempFile;

    public String getRefid() {
        return this.refid;
    }

    public void setRefid(String refid) {
        this.refid = refid;
    }

    public String getFormat() {
        return this.format;
    }

    public void setFormat(String format) {
        this.format = format;
    }

    public MultipartFile getFile() {
        return this.file;
    }

    public void setFile(MultipartFile file) {
        this.file = file;
    }

    public String getPic_refid() {
        return this.pic_refid;
    }

    public void setPic_refid(String pic_refid) {
        this.pic_refid = pic_refid;
    }

    public String getLocation_id() {
        return this.location_id;
    }

    public void setLocation_id(String location_id) {
        this.location_id = location_id;
    }

    public String getVideo_path() {
        return this.video_path;
    }

    public void setVideo_path(String video_path) {
        this.video_path = video_path;
    }

    public File getTempFile() {
        return this.tempFile;
    }

    public void setTempFile(File tempFile) {
        this.tempFile = tempFile;
    }
}