From e46e620ea7afd8b18aa24dde8e3c9564355fa14f Mon Sep 17 00:00:00 2001
From: peng <peng.com>
Date: 星期日, 28 九月 2025 15:14:51 +0800
Subject: [PATCH] Merge branch 'send_coupon' into user_action

---
 framework/src/main/java/cn/lili/modules/lmk/domain/entity/StoreCouponClaimRecord.java |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 51 insertions(+), 0 deletions(-)

diff --git a/framework/src/main/java/cn/lili/modules/lmk/domain/entity/StoreCouponClaimRecord.java b/framework/src/main/java/cn/lili/modules/lmk/domain/entity/StoreCouponClaimRecord.java
new file mode 100644
index 0000000..1742de2
--- /dev/null
+++ b/framework/src/main/java/cn/lili/modules/lmk/domain/entity/StoreCouponClaimRecord.java
@@ -0,0 +1,51 @@
+package cn.lili.modules.lmk.domain.entity;
+
+import cn.lili.mybatis.BaseEntity;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import java.io.Serializable;
+import lombok.Data;
+
+/**
+ * 搴楅摵浼樻儬鍗烽鍙栬褰�
+ *
+ * @author peng
+ * @since 2025-09-25
+ */
+@Data
+@TableName("lmk_store_coupon_claim_record")
+public class StoreCouponClaimRecord extends BaseEntity {
+
+    private static final long serialVersionUID = 1L;
+
+    @TableField("store_name")
+    /** 搴楅摵鍚嶇О */
+    private String storeName;
+
+    @TableField("coupon_id")
+    /** 浼樻儬鍗穒d */
+    private String couponId;
+
+    @TableField("store_coupon_id")
+    /** 搴楅摵浼樻儬鍗峰叧鑱攊d */
+    private String storeCouponId;
+
+    @TableField("coupon_name")
+    /** 浼樻儬鍗峰悕绉� */
+    private String couponName;
+
+    @TableField("store_id")
+    /** 搴楅摵id */
+    private Long storeId;
+
+    @TableField("user_id")
+    /** 鐢ㄦ埛id */
+    private String userId;
+
+
+    @TableField("member_coupon_id")
+    /** 鐢ㄦ埛棰嗗彇浼樻儬鍗穒d
+     * */
+    private String memberCouponId;
+
+}

--
Gitblit v1.8.0