admin
2020-12-26 b82493b0c083ed6bd5c0013bf21b8cb651a32eec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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;
    }
}