package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.entity.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* 中奖记录表
|
*/
|
@Data
|
@TableName("mall_act_win_record")
|
public class MallActWinRecord extends BaseEntity {
|
|
//参与人ID
|
private Long memberId;
|
//活动ID
|
private Long actId;
|
//活动名称
|
private String actName;
|
//奖品ID
|
private Long awardId;
|
//奖品名称
|
private String awardName;
|
//类型 1:积分 2:佣金
|
private Integer awardType;
|
//积分或佣金数量
|
private Integer awardValue;
|
//抽奖记录ID
|
private Long recordId;
|
|
}
|