yujian
2020-06-03 80e39e3a40283521fc732c930aa51d9bece7c146
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
127
128
129
130
package com.yeshi.fanli.entity.bus.user.cloud;
 
import java.math.BigDecimal;
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
import com.google.gson.annotations.Expose;
 
/**
 * 用户云发单
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_user_cloud_order")
public class UserCloudOrder {
 
    @Column(name = "crd_id")
    private Long id;
 
    @Column(name = "crd_uid")
    private Long uid;
 
    @Expose
    @Column(name = "crd_money")
    private BigDecimal money;
 
    @Column(name = "crd_type")
    private CloudOrderMenuEnum type; // 订单类型
 
    @Column(name = "crd_state")
    private Boolean state; // 支付状态
 
    @Expose
    @Column(name = "crd_desc") // 描述
    private String desc;
 
    @Expose
    @Column(name = "crd_create_time")
    private Date createTime;
 
    @Column(name = "crd_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 BigDecimal getMoney() {
        return money;
    }
 
    public void setMoney(BigDecimal money) {
        this.money = money;
    }
 
    public CloudOrderMenuEnum getType() {
        return type;
    }
 
    public void setType(CloudOrderMenuEnum type) {
        this.type = type;
    }
 
    public Boolean getState() {
        return state;
    }
 
    public void setState(Boolean state) {
        this.state = state;
    }
 
    public String getDesc() {
        return desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
 
    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 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;
    }
 
}