zhanghua
2024-12-20 1f45c25ea725445d7e78e8d5da6e72150f35f2eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.dahua.netsdk.module.entity;
 
import com.dahua.netsdk.lib.enumeration.EM_DELIVERY_FILE_TYPE;
 
import java.io.Serializable;
 
/**
 * @author 47081
 * @version 1.0
 * @description 投放文件的信息
 * @date 2020/9/14
 */
public class DeliveryFileInfo implements Serializable {
    /**
     * 文件类型
     */
    private EM_DELIVERY_FILE_TYPE emFileType;
    /**
     * 文件资源地址
     */
    private String szFileUrl;
    /**
     * 每张图片停留多长时间
     */
    private int nImageSustain;
 
    public DeliveryFileInfo() {
    }
 
    public DeliveryFileInfo(EM_DELIVERY_FILE_TYPE emFileType, String szFileUrl, int nImageSustain) {
        this.emFileType = emFileType;
        this.szFileUrl = szFileUrl;
        this.nImageSustain = nImageSustain;
    }
 
    public EM_DELIVERY_FILE_TYPE getEmFileType() {
        return emFileType;
    }
 
    public void setEmFileType(EM_DELIVERY_FILE_TYPE emFileType) {
        this.emFileType = emFileType;
    }
 
    public String getSzFileUrl() {
        return szFileUrl;
    }
 
    public void setSzFileUrl(String szFileUrl) {
        this.szFileUrl = szFileUrl;
    }
 
    public int getnImageSustain() {
        return nImageSustain;
    }
 
    public void setnImageSustain(int nImageSustain) {
        this.nImageSustain = nImageSustain;
    }
}