| | |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.FieldStrategy; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | |
| | | * 活动是否已默认好评 |
| | | */ |
| | | private Integer isDefaultPraise; |
| | | /** |
| | | * 签到范围,默认0无限制 |
| | | */ |
| | | @TableField("`range`") |
| | | private Integer range; |
| | | /** |
| | | * 是否有积分奖励(1.是 2.否) |
| | | */ |
| | | private Integer haveIntegralReward; |
| | | /** |
| | | * 积分奖励方式(1.按次奖励 2.记时奖励) |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private Integer rewardWay; |
| | | /** |
| | | * 奖励积分 |
| | | */ |
| | | private Integer rewardIntegral; |
| | | /** |
| | | * 参与次数上限 |
| | | */ |
| | | @TableField("`limit`") |
| | | private Integer limit; |
| | | /** |
| | | * 是否允许取消(1.允许 2.不允许) |
| | | */ |
| | | private Integer canCancel; |
| | | /** |
| | | * 取消扣除积分 |
| | | */ |
| | | private Integer cancelDeduct; |
| | | /** |
| | | * 活动类型 |
| | | */ |
| | | private String activityType; |
| | | } |