|
@@ -0,0 +1,93 @@
|
|
|
+package com.fdkankan.contro.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 会员权益类型
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author
|
|
|
+ * @since 2022-08-01
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@TableName("t_increment_type")
|
|
|
+public class IncrementType implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 权益类型名称
|
|
|
+ */
|
|
|
+ @TableField("name")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ @TableField("type")
|
|
|
+ private String type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 下载次数,-1代表无限次
|
|
|
+ */
|
|
|
+ @TableField("download_num")
|
|
|
+ private Integer downloadNum;
|
|
|
+ /**
|
|
|
+ * 下载次数,-1代表无限次
|
|
|
+ */
|
|
|
+ @TableField("download_price")
|
|
|
+ private BigDecimal downloadPrice;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 相机容量 单位 G
|
|
|
+ */
|
|
|
+ @TableField("camera_capacity")
|
|
|
+ private Integer cameraCapacity;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 购买之后,有效期天数,-1代表无限制
|
|
|
+ */
|
|
|
+ @TableField("valid_time")
|
|
|
+ private Integer validTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 0:年;1:月:2:日
|
|
|
+ */
|
|
|
+ @TableField("valid_time_type")
|
|
|
+ private Integer validTimeType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 权益价格
|
|
|
+ */
|
|
|
+ @TableField("price")
|
|
|
+ private BigDecimal price;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 价格符号
|
|
|
+ */
|
|
|
+ @TableField("symbol")
|
|
|
+ private String symbol;
|
|
|
+
|
|
|
+ @TableField("create_time")
|
|
|
+ private String createTime;
|
|
|
+
|
|
|
+ @TableField("update_time")
|
|
|
+ private String updateTime;
|
|
|
+
|
|
|
+ @TableField("rec_status")
|
|
|
+ @TableLogic(value = "A",delval = "I")
|
|
|
+ private String recStatus;
|
|
|
+
|
|
|
+
|
|
|
+}
|