package com.yeshi.fanli.dto.push;
|
|
import com.yeshi.fanli.entity.SystemEnum;
|
|
//推送内容
|
public class PushContentDetailDTO {
|
private PushTypeEnum type;
|
private Long uid;
|
private String url;
|
private String webUrl;
|
private Long goodsId;
|
private PushBaseContent content;
|
|
|
public PushContentDetailDTO(PushTypeEnum type, Long uid, String url, String webUrl, Long goodsId, PushBaseContent content) {
|
this.type = type;
|
this.uid = uid;
|
this.url = url;
|
this.webUrl = webUrl;
|
this.goodsId = goodsId;
|
this.content = content;
|
}
|
|
public PushTypeEnum getType() {
|
return type;
|
}
|
|
public void setType(PushTypeEnum type) {
|
this.type = type;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getWebUrl() {
|
return webUrl;
|
}
|
|
public void setWebUrl(String webUrl) {
|
this.webUrl = webUrl;
|
}
|
|
public Long getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(Long goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public PushBaseContent getContent() {
|
return content;
|
}
|
|
public void setContent(PushBaseContent content) {
|
this.content = content;
|
}
|
|
}
|