package com.yeshi.buwan.dto.mq;
|
|
import java.util.Date;
|
|
public class UpdateResourceVideoMQMsg {
|
private String id;
|
private Integer resourceId;
|
private Date date;
|
|
private String handler;
|
|
public UpdateResourceVideoMQMsg(String id, Integer resourceId, Date date) {
|
this.id = id;
|
this.resourceId = resourceId;
|
this.date = date;
|
}
|
|
|
public UpdateResourceVideoMQMsg() {
|
|
}
|
|
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;
|
}
|
|
public Date getDate() {
|
return date;
|
}
|
|
public void setDate(Date date) {
|
this.date = date;
|
}
|
|
public String getHandler() {
|
return handler;
|
}
|
|
public void setHandler(String handler) {
|
this.handler = handler;
|
}
|
}
|