SceneMoveLog.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package com.fdkankan.job.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. import lombok.Getter;
  9. import lombok.Setter;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author
  16. * @since 2023-07-12
  17. */
  18. @Getter
  19. @Setter
  20. @TableName("t_scene_move_log")
  21. public class SceneMoveLog implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. /**
  24. * 相机迁移日志表
  25. */
  26. @TableId(value = "id", type = IdType.AUTO)
  27. private Integer id;
  28. /**
  29. * 场景码
  30. */
  31. @TableField("num")
  32. private String num;
  33. /**
  34. * 旧相机sn
  35. */
  36. @TableField("old_sn_code")
  37. private String oldSnCode;
  38. /**
  39. * 新相机sn
  40. */
  41. @TableField("new_sn_code")
  42. private String newSnCode;
  43. @TableField("old_data_source")
  44. private String oldDataSource;
  45. @TableField("new_data_source")
  46. private String newDataSource;
  47. @TableField("create_time")
  48. private Date createTime;
  49. @TableField("update_time")
  50. private Date updateTime;
  51. @TableField("data_source_bak")
  52. private String dataSourceBak;
  53. }