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();
|
}
|
}
|