| | |
| | | import org.springframework.data.annotation.Id; |
| | | import org.springframework.data.mongodb.core.mapping.Document; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | @Document(collection = "activityExtraInfo") |
| | |
| | | private String shareImageLink; |
| | | //活动有效天数 |
| | | private Integer validDay; |
| | | |
| | | //真用户中奖的比例 |
| | | private BigDecimal realDrawnPercent; |
| | | |
| | | private Date createTime; |
| | | private Date updateTime; |
| | | |
| | | |
| | | public BigDecimal getRealDrawnPercent() { |
| | | return realDrawnPercent; |
| | | } |
| | | |
| | | public void setRealDrawnPercent(BigDecimal realDrawnPercent) { |
| | | this.realDrawnPercent = realDrawnPercent; |
| | | } |
| | | |
| | | public Integer getValidDay() { |
| | | return validDay; |
| | | } |