| | |
| | | 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 = 5; |
| | | //显示活动开奖 |
| | | public final static int TYPE_OPEN_SHOW = 5; |
| | | |
| | | private Long activityId; |
| | | private Integer type; |