package com.yeshi.buwan.dto.mq;
|
|
public class InternetSearchVideoMQMsg {
|
private String handler;
|
private String id;
|
private Integer resourceId;
|
|
public String getHandler() {
|
return handler;
|
}
|
|
public void setHandler(String handler) {
|
this.handler = handler;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Integer getResourceId() {
|
return resourceId;
|
}
|
|
public void setResourceId(Integer resourceId) {
|
this.resourceId = resourceId;
|
}
|
}
|