| | |
| | | import java.util.Date; |
| | | |
| | | public class LuckyActivityJoinAssist implements Serializable { |
| | | |
| | | public enum ActivityJoinAssistEvent { |
| | | assist("助力"), assistJoin("助力者参加活动"); |
| | | |
| | | private String name; |
| | | |
| | | private ActivityJoinAssistEvent(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | public String getName() { |
| | | return this.name; |
| | | } |
| | | |
| | | } |
| | | |
| | | private Long id; |
| | | |
| | | private Long joinId; |
| | |
| | | |
| | | private Integer weight; |
| | | |
| | | private ActivityJoinAssistEvent eventKey; |
| | | |
| | | private Date createTime; |
| | | |
| | | private Date updateTime; |
| | | |
| | | public ActivityJoinAssistEvent getEventKey() { |
| | | return eventKey; |
| | | } |
| | | |
| | | public void setEventKey(ActivityJoinAssistEvent eventKey) { |
| | | this.eventKey = eventKey; |
| | | } |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |