admin
2021-06-01 4f5a5b0a00c01491f009074351089f086f950d3e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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;
    }
 
}