|
@@ -17,7 +17,7 @@ import lombok.Setter;
|
|
* </p>
|
|
* </p>
|
|
*
|
|
*
|
|
* @author
|
|
* @author
|
|
- * @since 2022-08-01
|
|
|
|
|
|
+ * @since 2023-06-19
|
|
*/
|
|
*/
|
|
@Getter
|
|
@Getter
|
|
@Setter
|
|
@Setter
|
|
@@ -35,6 +35,9 @@ public class IncrementType implements Serializable {
|
|
@TableField("name")
|
|
@TableField("name")
|
|
private String name;
|
|
private String name;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * member会员,freeMember免费会员
|
|
|
|
+ */
|
|
@TableField("type")
|
|
@TableField("type")
|
|
private String type;
|
|
private String type;
|
|
|
|
|
|
@@ -43,8 +46,9 @@ public class IncrementType implements Serializable {
|
|
*/
|
|
*/
|
|
@TableField("download_num")
|
|
@TableField("download_num")
|
|
private Integer downloadNum;
|
|
private Integer downloadNum;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
- * 下载次数,-1代表无限次
|
|
|
|
|
|
+ * 下载价格
|
|
*/
|
|
*/
|
|
@TableField("download_price")
|
|
@TableField("download_price")
|
|
private BigDecimal downloadPrice;
|
|
private BigDecimal downloadPrice;
|
|
@@ -56,6 +60,12 @@ public class IncrementType implements Serializable {
|
|
private Integer cameraCapacity;
|
|
private Integer cameraCapacity;
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 相机容量单位
|
|
|
|
+ */
|
|
|
|
+ @TableField("unit")
|
|
|
|
+ private String unit;
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 购买之后,有效期天数,-1代表无限制
|
|
* 购买之后,有效期天数,-1代表无限制
|
|
*/
|
|
*/
|
|
@TableField("valid_time")
|
|
@TableField("valid_time")
|
|
@@ -79,15 +89,66 @@ public class IncrementType implements Serializable {
|
|
@TableField("symbol")
|
|
@TableField("symbol")
|
|
private String symbol;
|
|
private String symbol;
|
|
|
|
|
|
- @TableField("create_time")
|
|
|
|
- private String createTime;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 自定义logo
|
|
|
|
+ */
|
|
|
|
+ @TableField("custom_logo")
|
|
|
|
+ private Boolean customLogo;
|
|
|
|
|
|
- @TableField("update_time")
|
|
|
|
- private String updateTime;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 自定义热点样式
|
|
|
|
+ */
|
|
|
|
+ @TableField("custom_style")
|
|
|
|
+ private Boolean customStyle;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 空间贴图
|
|
|
|
+ */
|
|
|
|
+ @TableField("custom_image")
|
|
|
|
+ private Boolean customImage;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 三维模型
|
|
|
|
+ */
|
|
|
|
+ @TableField("custom_model")
|
|
|
|
+ private Boolean customModel;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 场景美化调节
|
|
|
|
+ */
|
|
|
|
+ @TableField("custom_scene")
|
|
|
|
+ private Boolean customScene;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 场景复制
|
|
|
|
+ */
|
|
|
|
+ @TableField("custom_copy")
|
|
|
|
+ private Boolean customCopy;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 场景计算
|
|
|
|
+ */
|
|
|
|
+ @TableField("custom_modeling")
|
|
|
|
+ private Integer customModeling;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 场景下载
|
|
|
|
+ */
|
|
|
|
+ @TableField("custom_down")
|
|
|
|
+ private Integer customDown;
|
|
|
|
|
|
@TableField("rec_status")
|
|
@TableField("rec_status")
|
|
@TableLogic(value = "A",delval = "I")
|
|
@TableLogic(value = "A",delval = "I")
|
|
private String recStatus;
|
|
private String recStatus;
|
|
|
|
|
|
|
|
+ @TableField("create_time")
|
|
|
|
+ private Date createTime;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 权益价格
|
|
|
|
+ */
|
|
|
|
+ @TableField("update_time")
|
|
|
|
+ private Date updateTime;
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|