yujian
2019-07-30 969ac5f2ef08e2cd662853d9b771c9663c5d2c70
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.yeshi.fanli.dto.share;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.share.UserShareGoodsRecord.ShareSourceTypeEnum;
import com.yeshi.fanli.entity.goods.CommonGoods;
 
public class ShareGoodsRecordDTO {
    
    private Long uid;
    private Long shareId;
    private String shareUrl;
    private String sharePictureUrl;
    private String redisKey;
    private ShareSourceTypeEnum source;
    private Long auctionId;
    private Integer goodsType;
    private List<CommonGoods> listGoods;
    private List<Long> listId;
    
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public Long getShareId() {
        return shareId;
    }
 
    public void setShareId(Long shareId) {    
        this.shareId = shareId;
    }
 
    public String getRedisKey() {
        return redisKey;
    }
 
    public void setRedisKey(String redisKey) {
        this.redisKey = redisKey;
    }
 
    public String getShareUrl() {
        return shareUrl;
    }
 
    public void setShareUrl(String shareUrl) {
        this.shareUrl = shareUrl;
    }
 
    public String getSharePictureUrl() {
        return sharePictureUrl;
    }
 
    public void setSharePictureUrl(String sharePictureUrl) {
        this.sharePictureUrl = sharePictureUrl;
    }
 
    public Long getAuctionId() {
        return auctionId;
    }
 
    public void setAuctionId(Long auctionId) {
        this.auctionId = auctionId;
    }
 
    public ShareSourceTypeEnum getSource() {
        return source;
    }
 
    public void setSource(ShareSourceTypeEnum source) {
        this.source = source;
    }
 
    public List<Long> getListId() {
        return listId;
    }
 
    public void setListId(List<Long> listId) {
        this.listId = listId;
    }
 
    public Integer getGoodsType() {
        return goodsType;
    }
 
    public void setGoodsType(Integer goodsType) {
        this.goodsType = goodsType;
    }
 
    public List<CommonGoods> getListGoods() {
        return listGoods;
    }
 
    public void setListGoods(List<CommonGoods> listGoods) {
        this.listGoods = listGoods;
    }
 
}