CameraDetail.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. package com.fdkankan.app.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * <p>
  9. * 相机子表
  10. * </p>
  11. *
  12. * @author
  13. * @since 2022-07-15
  14. */
  15. @Getter
  16. @Setter
  17. @TableName("t_camera_detail")
  18. public class CameraDetail implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. @TableId(value = "id", type = IdType.AUTO)
  21. private Long id;
  22. /**
  23. * 余额
  24. */
  25. @TableField("balance")
  26. private String balance;
  27. /**
  28. * 用户表t_user的id
  29. */
  30. @TableField("user_id")
  31. private Long userId;
  32. /**
  33. * 0表示客户,1表示员工,2表示赠送,3表示其他,4经销商销售
  34. */
  35. @TableField("own")
  36. private Integer own;
  37. /**
  38. * 订单号
  39. */
  40. @TableField("order_sn")
  41. private String orderSn;
  42. /**
  43. * 0表示本国,1表示国外
  44. */
  45. @TableField("country")
  46. private Integer country;
  47. /**
  48. * 经销商
  49. */
  50. @TableField("agency")
  51. private String agency;
  52. /**
  53. * 相机类型,0表示双目,1四维看看pro,2 四维看看lite,9 双目转台,10 激光转台
  54. */
  55. @TableField("type")
  56. private Integer type;
  57. /**
  58. * 总容量
  59. */
  60. @TableField("total_space")
  61. private Long totalSpace;
  62. /**
  63. * 已使用容量
  64. */
  65. @TableField("used_space")
  66. private Long usedSpace;
  67. /**
  68. * 相机主表t_camera的id
  69. */
  70. @TableField("camera_id")
  71. private Long cameraId;
  72. /**
  73. * 商品表t_goods的id
  74. */
  75. @TableField("goods_id")
  76. private Long goodsId;
  77. /**
  78. * 企业表t_company的id
  79. */
  80. @TableField("company_id")
  81. private Long companyId;
  82. /**
  83. * 代理商架构管理t_agent_framework的id
  84. */
  85. @TableField("agent_framework_id")
  86. private Long agentFrameworkId;
  87. /**
  88. * 相机协作用户id
  89. */
  90. @TableField("cooperation_user")
  91. private Long cooperationUser;
  92. /**
  93. * 设备地址(追溯管理后台)
  94. */
  95. @TableField("address")
  96. private String address;
  97. /**
  98. * 创建时间
  99. */
  100. @TableField("create_time")
  101. private String createTime;
  102. /**
  103. * 更新时间
  104. */
  105. @TableField("update_time")
  106. private String updateTime;
  107. /**
  108. * 记录的状态,A: 生效,I: 禁用
  109. */
  110. @TableField("rec_status")
  111. @TableLogic(value = "A",delval = "I")
  112. private String recStatus;
  113. @TableField("user_camera_version")
  114. private String userCameraVersion;
  115. @TableField("app_version")
  116. private String appVersion;
  117. @TableField("last_request_time")
  118. private Date lastRequestTime;
  119. }