1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.qxueyou.scc.sys.model;
|
|
| /**
| * @author kevin
| *
| */
| public class MsgTypeConstants {
|
| public static final String LIVE_DOWN_LOAD_VIDEO = "DOWN_LOAD_RECORD";
|
|
| public static final String LIVE_EDIT_GENERATE_VIDEO = "EDIT_GENERATE_VIDEO";
|
|
| public static final String LIVE_REPLAY_DATA_INIT = "REPLAY_DATA_INIT";
|
|
| public static final String LIVE_REPLAY_SCREENSHOT = "REPLAY_SCREENSHOT";
| }
|
|