package com.yeshi.fanli.entity.bus.user.cloud;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
import org.yeshi.utils.generater.mybatis.Column;
|
import org.yeshi.utils.generater.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;
|
}
|
|
}
|