admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
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
package com.yeshi.buwan.dto.mq;
 
public class VideoExtraInfoChangeMQMsg {
    //添加
    public final static String ACTION_ADD = "add";
    //删除
    public final static String ACTION_DELETE = "del";
 
    //来源
    public final static String TYPE_RESOURCE = "resource";
    //分类
    public final static String TYPE_CATEGORY = "category";
 
 
    private String type;
    private String videoId;
    private String action;
 
    public VideoExtraInfoChangeMQMsg(String type, String videoId, String action) {
        this.type = type;
        this.videoId = videoId;
        this.action = action;
    }
 
    public VideoExtraInfoChangeMQMsg() {
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getVideoId() {
        return videoId;
    }
 
    public void setVideoId(String videoId) {
        this.videoId = videoId;
    }
 
    public String getAction() {
        return action;
    }
 
    public void setAction(String action) {
        this.action = action;
    }
}