吉安感知网项目-后端
xiebin
2026-01-06 d207a86cdf1ab52ef8cb7cd83bad8fceab8038cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.sxkj.resource.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @Description TODO
 * @Author AIX
 * @Date 2025/3/31 10:01
 * @Version 1.0
 */
@Data
@ApiModel(value = "成果数据", description = "任务成果")
public class MediaFileVO implements Serializable {
    private static final long serialVersionUID = 1L;
    @ApiModelProperty("地址")
    private String url;
    @ApiModelProperty("成果类型:0图片,1=视频")
    private Integer resultType;
 
}