package com.yanzuoguang.util.vo.file; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; /** * 某个文件上传结果 * * @author 颜佐光 */ @ApiModel(description = "某个文件上传结果") public class YzgFileUploadItemResVo extends YzgFileBaseVo { /** * 上传的文件前台路径 */ @ApiModelProperty(notes = "上传的文件前台路径", position = 10) private String localFile; /** * 视频时的第一帧相关信息 */ @ApiModelProperty(notes = "上传的文件前台路径", position = 20) private YzgFileBaseVo first; public String getLocalFile() { return localFile; } public void setLocalFile(String localFile) { this.localFile = localFile; } public YzgFileBaseVo getFirst() { return first; } public void setFirst(YzgFileBaseVo first) { this.first = first; } }