ScenePlus.java 2.6 KB

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