New file |
| | |
| | | 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") |
| | | /** 优惠卷id */ |
| | | private String couponId; |
| | | |
| | | @TableField("store_coupon_id") |
| | | /** 店铺优惠卷关联id */ |
| | | 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") |
| | | /** 用户领取优惠卷id |
| | | * */ |
| | | private String memberCouponId; |
| | | |
| | | } |