admin
2024-05-27 816ba1e56476f0e23f51711aae4b34507a04a59c
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
package com.ruoyi.camera.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;
 
/**
 * 摄像头视频识别对象 camera_shipingsb
 * 
 * @author ruoyi
 * @date 2023-09-14
 */
public class CameraShipingsb extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private Long id;
 
    /** 摄像头ID */
    @Excel(name = "摄像头ID")
    private Long sheXiangTID;
 
    /** 摄像头编码 */
    @Excel(name = "摄像头编码")
    private String sheXiangTBM;
 
    /** 识别类型编码 */
    @Excel(name = "识别类型编码")
    private String shiBieLXBM;
 
    /** 识别类型名称 */
    @Excel(name = "识别类型名称")
    private String shiBieLXMC;
 
    /** 分析类型编码 */
    @Excel(name = "分析类型编码")
    private String fenXiLXBM;
 
    /** 识别视频存储地址 */
    @Excel(name = "识别视频存储地址")
    private String fileUrl;
 
    /** 数据时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "数据时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date shuJuSJ;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setSheXiangTID(Long sheXiangTID) 
    {
        this.sheXiangTID = sheXiangTID;
    }
 
    public Long getSheXiangTID() 
    {
        return sheXiangTID;
    }
    public void setSheXiangTBM(String sheXiangTBM) 
    {
        this.sheXiangTBM = sheXiangTBM;
    }
 
    public String getSheXiangTBM() 
    {
        return sheXiangTBM;
    }
    public void setShiBieLXBM(String shiBieLXBM) 
    {
        this.shiBieLXBM = shiBieLXBM;
    }
 
    public String getShiBieLXBM() 
    {
        return shiBieLXBM;
    }
    public void setShiBieLXMC(String shiBieLXMC) 
    {
        this.shiBieLXMC = shiBieLXMC;
    }
 
    public String getShiBieLXMC() 
    {
        return shiBieLXMC;
    }
    public void setFenXiLXBM(String fenXiLXBM) 
    {
        this.fenXiLXBM = fenXiLXBM;
    }
 
    public String getFenXiLXBM() 
    {
        return fenXiLXBM;
    }
    public void setFileUrl(String fileUrl) 
    {
        this.fileUrl = fileUrl;
    }
 
    public String getFileUrl() 
    {
        return fileUrl;
    }
    public void setShuJuSJ(Date shuJuSJ) 
    {
        this.shuJuSJ = shuJuSJ;
    }
 
    public Date getShuJuSJ() 
    {
        return shuJuSJ;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("sheXiangTID", getSheXiangTID())
            .append("sheXiangTBM", getSheXiangTBM())
            .append("shiBieLXBM", getShiBieLXBM())
            .append("shiBieLXMC", getShiBieLXMC())
            .append("fenXiLXBM", getFenXiLXBM())
            .append("fileUrl", getFileUrl())
            .append("shuJuSJ", getShuJuSJ())
            .toString();
    }
}