视频列表实体
This commit is contained in:
parent
722f145aa4
commit
0b425a0ffd
|
|
@ -0,0 +1,60 @@
|
|||
package com.dkl.large.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.dkl.common.annotation.Excel;
|
||||
import com.dkl.common.core.domain.BaseEntity;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 大客流视频数据获取对象 dkl_video_data
|
||||
*
|
||||
* @author Dkl
|
||||
* @date 2025-06-06
|
||||
*/
|
||||
@Data
|
||||
public class DklVideoData extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private int id;
|
||||
|
||||
/** 监控id */
|
||||
@Excel(name = "监控id")
|
||||
private int videoId;
|
||||
|
||||
/** 获取时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "获取时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date acquisitionTime;
|
||||
|
||||
/** 人数 */
|
||||
@Excel(name = "人数")
|
||||
private String numberPeople;
|
||||
|
||||
/** 是否出现异常(跌倒/斗殴等) */
|
||||
@Excel(name = "是否出现异常(跌倒/斗殴等)")
|
||||
private String isAbnormal;
|
||||
|
||||
/** 删除标志(0代表存在 2代表删除) */
|
||||
private String delFlag;
|
||||
|
||||
/** 原数据 */
|
||||
@Excel(name = "原数据")
|
||||
private String originalData;
|
||||
|
||||
/** 部门id */
|
||||
@Excel(name = "部门id")
|
||||
private Long deptId;
|
||||
|
||||
/** 视频名称 */
|
||||
@TableField(exist = false)
|
||||
private String videoName;
|
||||
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue