|
|
@@ -0,0 +1,35 @@
|
|
|
+package com.etotem.cfc.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Data
|
|
|
+@TableName("octopus_effect_record")
|
|
|
+public class OctopusEffectRecord implements Serializable {
|
|
|
+
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ private Long userId;
|
|
|
+
|
|
|
+ private Long memberOrderId;
|
|
|
+
|
|
|
+ private Integer effectType; // bitmask
|
|
|
+
|
|
|
+ private BigDecimal effectAmount;
|
|
|
+
|
|
|
+ private String effectDesc;
|
|
|
+
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ private Date createdAt;
|
|
|
+
|
|
|
+ // 非持久化:解析后的类型标签列表
|
|
|
+ private transient java.util.List<String> effectTypeList;
|
|
|
+}
|