admin
2024-04-09 3d28cc569ff9bdf20ac56598ae4de8e2809d6f35
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
package com.ruoyi.aibrain.domain;
 
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * AI视频文件对象 ai_video_file
 * 
 * @author wf
 * @date 2023-03-08
 */
public class AiVideoFile extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private Long id;
 
    /** 录像设备id */
    @Excel(name = "录像设备id")
    private String cameraId;
 
    /** 录像区域 */
    @Excel(name = "录像区域")
    private String region;
 
    /** 录像类型 h历史视频 e报警片段 */
    @Excel(name = "录像类型")
    private String videoType;
 
    /** 文件名称 */
    @Excel(name = "文件名称")
    private String fileName;
 
    /** 附件路径 */
    @Excel(name = "附件路径")
    private String filePath;
 
    /** 视频日期(2020-01-01) */
    @Excel(name = "视频日期(2020-01-01)")
    private String videoDate;
 
    /** 视频时间(24小时制)00-23 */
    @Excel(name = "视频时间", readConverterExp = "2=4小时制")
    private String videoTime;
 
    /** 创建时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date createDate;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setCameraId(String cameraId) 
    {
        this.cameraId = cameraId;
    }
 
    public String getCameraId() 
    {
        return cameraId;
    }
    public void setRegion(String region) 
    {
        this.region = region;
    }
 
    public String getRegion() 
    {
        return region;
    }
    public void setVideoType(String videoType) 
    {
        this.videoType = videoType;
    }
 
    public String getVideoType() 
    {
        return videoType;
    }
    public void setFileName(String fileName) 
    {
        this.fileName = fileName;
    }
 
    public String getFileName() 
    {
        return fileName;
    }
    public void setFilePath(String filePath) 
    {
        this.filePath = filePath;
    }
 
    public String getFilePath() 
    {
        return filePath;
    }
    public void setVideoDate(String videoDate) 
    {
        this.videoDate = videoDate;
    }
 
    public String getVideoDate() 
    {
        return videoDate;
    }
    public void setVideoTime(String videoTime) 
    {
        this.videoTime = videoTime;
    }
 
    public String getVideoTime() 
    {
        return videoTime;
    }
    public void setCreateDate(Date createDate) 
    {
        this.createDate = createDate;
    }
 
    public Date getCreateDate() 
    {
        return createDate;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("cameraId", getCameraId())
            .append("region", getRegion())
            .append("videoType", getVideoType())
            .append("fileName", getFileName())
            .append("filePath", getFilePath())
            .append("videoDate", getVideoDate())
            .append("videoTime", getVideoTime())
            .append("createDate", getCreateDate())
            .toString();
    }
}