12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package com.fdkankan.job.entity;
- 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 java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2023-07-12
- */
- @Getter
- @Setter
- @TableName("t_scene_move_log")
- public class SceneMoveLog implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 相机迁移日志表
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 场景码
- */
- @TableField("num")
- private String num;
- /**
- * 旧相机sn
- */
- @TableField("old_sn_code")
- private String oldSnCode;
- /**
- * 新相机sn
- */
- @TableField("new_sn_code")
- private String newSnCode;
- @TableField("old_data_source")
- private String oldDataSource;
- @TableField("new_data_source")
- private String newDataSource;
- @TableField("create_time")
- private Date createTime;
- @TableField("update_time")
- private Date updateTime;
- @TableField("data_source_bak")
- private String dataSourceBak;
- }
|