peng
2 天以前 5e77d6fbb049b2407a15387d73e2755d901a235e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package cn.lili.modules.lmk.domain.entity;
 
import cn.lili.modules.order.order.entity.enums.ClaimStatusEnum;
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-26
 */
@Data
@TableName("lmk_store_coupon_single")
public class StoreCouponSingle extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("store_coup_ref")
    /** 店铺优惠卷关联id */
    private String storeCoupRef;
 
    @TableField("store_id")
    /** 商家id */
    private Long storeId;
 
 
    @TableField("store_name")
    /** 商家id */
    private String storeName;
 
    @TableField("coupon_id")
    /** 优惠卷id */
    private String couponId;
 
    @TableField("coupon_name")
    /** 优惠卷名称 */
    private String couponName;
 
    @TableField("coupon_no")
    /** 编号 */
    private String couponNo;
 
    @TableField("claim_status")
    /** 是否领取
     * @see ClaimStatusEnum
     * */
    private String claimStatus;
 
    @TableField("claim_user_id")
    /** 领取用户id
     * */
    private String claimUserId;
 
    @TableField("claim_user_name")
    /** 领取用户名称
     * */
    private String claimUserName;
 
 
}