package com.yeshi.fanli.dto.mq.user.body;
|
|
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
|
|
/**
|
* 用户云发单
|
*
|
* @author Administrator
|
*
|
*/
|
public class UserCloudMQMsg extends BaseMQMsgBody {
|
private Long uid;// 用户ID
|
private String id;// 发圈id 、 商品库id
|
private Integer type;// 类型
|
|
public UserCloudMQMsg(Long uid, String id, Integer type) {
|
super();
|
this.uid = uid;
|
this.id = id;
|
this.type = type;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
|
}
|