ScenePlus.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. package com.fdkankan.scene.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 2022-06-29
  17. */
  18. @Getter
  19. @Setter
  20. @TableName("t_scene_plus")
  21. public class ScenePlus implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Long id;
  25. /**
  26. * 场景码
  27. */
  28. @TableField("num")
  29. private String num;
  30. /**
  31. * 用户id
  32. */
  33. @TableField("user_id")
  34. private Long userId;
  35. /**
  36. * 相机id
  37. */
  38. @TableField("camera_id")
  39. private Long cameraId;
  40. /**
  41. * 手机id
  42. */
  43. @TableField("phone_id")
  44. private String phoneId;
  45. /**
  46. * 场景名称
  47. */
  48. @TableField("title")
  49. private String title;
  50. /**
  51. * 场景描述
  52. */
  53. @TableField("description")
  54. private String description;
  55. /**
  56. * 场景状态:0-未建好,1--已建好,-1-计算出错,-2--不在官网显示
  57. */
  58. @TableField("scene_status")
  59. private Integer sceneStatus;
  60. /**
  61. * 场景来源:相机拍摄10以内表示,1表示八目,2双目,3转台,4 激光 其他来源10以上,11:一键换装,12:123看房,13文通虚拟场景
  62. */
  63. @TableField("scene_source")
  64. private Integer sceneSource;
  65. /**
  66. * 支付状态:0表示未付款,1表示付款了,-1表示欠费,-2表示容量不足
  67. */
  68. @TableField("pay_status")
  69. private Integer payStatus;
  70. /**
  71. * 场景类型 0-其他,1-文博,2-地产,3-电商,4-餐饮,5-家居,99-一件换装虚拟房源
  72. */
  73. @TableField("scene_type")
  74. private Integer sceneType;
  75. /**
  76. * 是否推荐:0-否,1-是
  77. */
  78. @TableField("recommend")
  79. private Integer recommend;
  80. /**
  81. * 创建时间
  82. */
  83. @TableField("create_time")
  84. private Date createTime;
  85. /**
  86. * 更新时间
  87. */
  88. @TableField("update_time")
  89. private Date updateTime;
  90. /**
  91. * 0-有效,1-删除, 2-禁用
  92. */
  93. @TableField("tb_status")
  94. private Integer tbStatus;
  95. }