80 lines
1.9 KiB
Java
80 lines
1.9 KiB
Java
|
|
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;
|
|||
|
|
import java.util.Date;
|
|||
|
|
import lombok.Data;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 视频点信息
|
|||
|
|
*/
|
|||
|
|
@Schema(description="视频点信息")
|
|||
|
|
@Data
|
|||
|
|
@TableName(value = "dbo.ST_CAMERA_AREA_B")
|
|||
|
|
public class StCameraAreaB {
|
|||
|
|
/**
|
|||
|
|
* 视频区域ID
|
|||
|
|
*/
|
|||
|
|
@TableId(value = "CAM_AR_ID", type = IdType.INPUT)
|
|||
|
|
@Schema(description="视频区域ID")
|
|||
|
|
private Long camArId;
|
|||
|
|
|
|||
|
|
@TableField(value = "CAM_AR_NM")
|
|||
|
|
@Schema(description="")
|
|||
|
|
private String camArNm;
|
|||
|
|
|
|||
|
|
@TableField(value = "PID")
|
|||
|
|
@Schema(description="")
|
|||
|
|
private Long pid;
|
|||
|
|
|
|||
|
|
@TableField(value = "SORT_ON")
|
|||
|
|
@Schema(description="")
|
|||
|
|
private Integer sortOn;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 状态 1:启用 0:禁用
|
|||
|
|
*/
|
|||
|
|
@TableField(value = "[STATUS]")
|
|||
|
|
@Schema(description="状态 1:启用 0:禁用")
|
|||
|
|
private Integer status;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 备注
|
|||
|
|
*/
|
|||
|
|
@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;
|
|||
|
|
|
|||
|
|
public static final String COL_CAM_AR_ID = "CAM_AR_ID";
|
|||
|
|
|
|||
|
|
public static final String COL_CAM_AR_NM = "CAM_AR_NM";
|
|||
|
|
|
|||
|
|
public static final String COL_PID = "PID";
|
|||
|
|
|
|||
|
|
public static final String COL_SORT_ON = "SORT_ON";
|
|||
|
|
|
|||
|
|
public static final String COL_STATUS = "STATUS";
|
|||
|
|
|
|||
|
|
public static final String COL_COMMENTS = "COMMENTS";
|
|||
|
|
|
|||
|
|
public static final String COL_CREATE_TM = "CREATE_TM";
|
|||
|
|
|
|||
|
|
public static final String COL_TM = "TM";
|
|||
|
|
}
|