From c253b555c7905c5136d47cd615ef545fa50cc6ad Mon Sep 17 00:00:00 2001
From: 935090232@qq.com <ak473600000>
Date: Sun, 20 Feb 2022 21:24:16 +0800
Subject: [PATCH] Merge branch 'api_score_meger'
---
zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopRevenueFlow.java | 69 ++++++++++++++++++++++++++++++++++
1 files changed, 69 insertions(+), 0 deletions(-)
diff --git a/zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopRevenueFlow.java b/zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopRevenueFlow.java
new file mode 100644
index 0000000..2a2130b
--- /dev/null
+++ b/zq-erp/src/main/java/com/matrix/system/fenxiao/entity/ShopRevenueFlow.java
@@ -0,0 +1,69 @@
+package com.matrix.system.fenxiao.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.matrix.core.anotations.Extend;
+import com.matrix.system.score.entity.BaseEntity;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+/**
+ * @description 收益流水
+ * @author yourName
+ * @date 2021-03-10 17:34
+ */
+@Data
+@TableName("shop_revenue_flow")
+public class ShopRevenueFlow extends BaseEntity {
+ @Extend
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 推广收益类型 推广收益
+ */
+ public static final String TYPE_TGSY = "推广收益";
+ /**
+ * 推广收益类型 邀请收益
+ */
+
+ public static final String TYPE_YQSY = "邀请收益";
+
+
+
+ /**
+ * 用户id
+ */
+ @ApiModelProperty(hidden = true)
+ private Long userId;
+
+ /**
+ * 收益说明
+ */
+
+ @ApiModelProperty(value = "收益说明")
+ private String revenueContent;
+
+ /**
+ * 收益金额
+ */
+
+ @ApiModelProperty(value = "收益金额")
+ private Double amount;
+
+ /**
+ * 原始订单ID
+ */
+
+ @ApiModelProperty(value = "原始订单ID")
+ private Long businessId;
+
+ /**
+ * 公司ID
+ */
+
+ @ApiModelProperty(hidden = true)
+ private Long companyId;
+
+
+
+
+}
\ No newline at end of file
--
Gitblit v1.9.1