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;
|
|
|
}
|