package com.panzhihua.service_community.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import lombok.Data;
|
|
/**
|
* @program: springcloud_k8s_panzhihuazhihuishequ
|
* @description: 活动奖品
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2020-12-07 14:14
|
**/
|
@Data
|
@TableName(value = "com_act_act_prize")
|
public class ComActActPrizeDO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 自增id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 所属活动id
|
*/
|
private Long activityId;
|
|
/**
|
* 奖品名称
|
*/
|
private String prizeName;
|
|
/**
|
* 奖品图片路径
|
*/
|
private String prizePhoto;
|
|
/**
|
* 是否报名既有 1 是 0 不是
|
*/
|
private Integer type;
|
/**
|
* 创建时间
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
|
}
|