package com.cyksj.model.entity; import com.baomidou.mybatisplus.annotation.TableLogic; import lombok.Getter; import lombok.Setter; /* *项目名: netflix *文件名: CouponDistributePopularize *创建者: JavaZou *创建时间:2022/11/17 18:07 */ @Getter @Setter public class CouponDistributePopularize extends BaseEntity { private Long couponId; /** * 固定推广者id */ private Long distributeId; private Long userId; /** * 是否是普通 默认不是 */ private Boolean isGeneral; /** * 兑换码 */ private String exCode; @TableLogic(value = "1", delval = "0") private Boolean deleted; }