2024-01-24 14:27:40 +08:00
|
|
|
|
package com.gunshi.project.xyt.model;
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
2024-01-24 16:32:03 +08:00
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
2024-01-24 14:27:40 +08:00
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 视频点信息
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Schema(description="视频点信息")
|
|
|
|
|
|
@Data
|
|
|
|
|
|
@TableName(value = "dbo.ST_CAMERA_B")
|
2024-01-24 16:32:03 +08:00
|
|
|
|
public class StCameraB implements Serializable {
|
2024-01-24 14:27:40 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 视频点id
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableId(value = "CAM_ID", type = IdType.INPUT)
|
|
|
|
|
|
@Schema(description="视频点id")
|
|
|
|
|
|
private Long camId;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 视频点名称
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "CAM_NM")
|
|
|
|
|
|
@Schema(description="视频点名称")
|
|
|
|
|
|
private String camNm;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 监控点类型
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "CAM_TYPE")
|
|
|
|
|
|
@Schema(description="监控点类型")
|
|
|
|
|
|
private Long camType;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 通道号
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "CAM_CH")
|
|
|
|
|
|
@Schema(description="通道号")
|
|
|
|
|
|
private Integer camCh;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 所在区域
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "CAM_AR_ID")
|
|
|
|
|
|
@Schema(description="所在区域")
|
|
|
|
|
|
private Long camArId;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 摄像头连接地址 IP和端口
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "CAM_URL")
|
|
|
|
|
|
@Schema(description="摄像头连接地址 IP和端口")
|
|
|
|
|
|
private String camUrl;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 视频序列号
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "CAM_SN")
|
|
|
|
|
|
@Schema(description="视频序列号")
|
|
|
|
|
|
private String camSn;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 经度
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "LGTD")
|
|
|
|
|
|
@Schema(description="经度")
|
|
|
|
|
|
private BigDecimal lgtd;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 纬度
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "LTTD")
|
|
|
|
|
|
@Schema(description="纬度")
|
|
|
|
|
|
private BigDecimal lttd;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 备注
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "COMMENTS")
|
|
|
|
|
|
@Schema(description="备注")
|
|
|
|
|
|
private String comments;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 新建时间
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "CREATE_TM")
|
|
|
|
|
|
@Schema(description="新建时间")
|
|
|
|
|
|
private Date createTm;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 修改时间
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "TM")
|
|
|
|
|
|
@Schema(description="修改时间")
|
|
|
|
|
|
private Date tm;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 状态 1:启用 0:禁用
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableField(value = "[STATUS]")
|
|
|
|
|
|
@Schema(description="状态 1:启用 0:禁用")
|
|
|
|
|
|
private Integer status;
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_CAM_ID = "CAM_ID";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_CAM_NM = "CAM_NM";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_CAM_TYPE = "CAM_TYPE";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_CAM_CH = "CAM_CH";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_CAM_AR_ID = "CAM_AR_ID";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_CAM_URL = "CAM_URL";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_CAM_SN = "CAM_SN";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_LGTD = "LGTD";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_LTTD = "LTTD";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_COMMENTS = "COMMENTS";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_CREATE_TM = "CREATE_TM";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_TM = "TM";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String COL_STATUS = "STATUS";
|
|
|
|
|
|
}
|