package com.ks.lucky.pojo.DTO;
|
|
import java.util.Date;
|
|
public class ActivityMQMsg {
|
//开始活动
|
public final static int TYPE_EXEC_START = 1;
|
//结束活动
|
public final static int TYPE_EXEC_FINSIH = 6;
|
//开始执行打开
|
public final static int TYPE_EXEC_OPEN = 7;
|
//活动达到最小开奖人数
|
public final static int TYPE_REACH_MIN_PERSON = 2;
|
//活动达到最大开奖数
|
public final static int TYPE_REACH_MAX_PERSON = 3;
|
//活动达到开奖时间
|
public final static int TYPE_REACH_OPEN_TIME = 4;
|
//显示活动开奖
|
public final static int TYPE_OPEN_SHOW = 5;
|
|
private Long activityId;
|
private Integer type;
|
private Date createTime;
|
|
public ActivityMQMsg(Long activityId, Integer type, Date createTime) {
|
this.activityId = activityId;
|
this.type = type;
|
this.createTime = createTime;
|
}
|
|
public Long getActivityId() {
|
return activityId;
|
}
|
|
public void setActivityId(Long activityId) {
|
this.activityId = activityId;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|