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;
|
}
|
}
|