yujian
2020-06-12 4d21b2ef5525c7b5ffdea77dc0de955958af9d9a
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package com.yeshi.fanli.entity.bus.user.cloud;
 
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
import com.google.gson.annotations.Expose;
import com.yeshi.fanli.entity.goods.CommonGoods;
 
/**
 * 发单商品库
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_user_cloud_goods")
public class UserCloudGoods {
 
    public static int STATE_NORMAL = 0;// 初始
    public static int STATE_SHARED = 1;// 1已分享
    public static int STATE_INVALID = 2;// 2已失效
    
    @Expose
    @Column(name = "ug_id")
    private Long id;
 
    @Column(name = "ug_uid")
    private Long uid; // 用户id
 
    @Expose
    @Column(name = "ug_common_id")
    private CommonGoods commonGoods;
 
    @Expose
    @Column(name = "ug_state")
    private Integer state; // 状态
    
    @Column(name = "ug_send_time")
    private Date sendTime; // 发送时间
 
    @Column(name = "ug_create_time")
    private Date createTime;
 
    @Column(name = "ug_update_time")
    private Date updateTime;
    
    private String nickName;// 昵称
    private String portrait;// 头像
    
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public CommonGoods getCommonGoods() {
        return commonGoods;
    }
 
    public void setCommonGoods(CommonGoods commonGoods) {
        this.commonGoods = commonGoods;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public Date getSendTime() {
        return sendTime;
    }
 
    public void setSendTime(Date sendTime) {
        this.sendTime = sendTime;
    }
 
    public String getNickName() {
        return nickName;
    }
 
    public void setNickName(String nickName) {
        this.nickName = nickName;
    }
 
    public String getPortrait() {
        return portrait;
    }
 
    public void setPortrait(String portrait) {
        this.portrait = portrait;
    }
    
    
 
}