package com.yeshi.fanli.vo.shop;
|
|
public class BanLiShopOrderVO {
|
private Long id;
|
private String orderId;// 订单号
|
private String chargeAccount;// 充值账号
|
private String orderTime;// 下单时间
|
private String chargeTime;// 充值时间
|
private BanLiShopOrderGoodsVO goods;// 商品
|
private String stateColor;// 状态的字体颜色
|
private String state;// 状态
|
private String stateDesc;// 状态说明
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
|
public String getChargeAccount() {
|
return chargeAccount;
|
}
|
|
public void setChargeAccount(String chargeAccount) {
|
this.chargeAccount = chargeAccount;
|
}
|
|
public String getOrderTime() {
|
return orderTime;
|
}
|
|
public void setOrderTime(String orderTime) {
|
this.orderTime = orderTime;
|
}
|
|
public String getChargeTime() {
|
return chargeTime;
|
}
|
|
public void setChargeTime(String chargeTime) {
|
this.chargeTime = chargeTime;
|
}
|
|
public BanLiShopOrderGoodsVO getGoods() {
|
return goods;
|
}
|
|
public void setGoods(BanLiShopOrderGoodsVO goods) {
|
this.goods = goods;
|
}
|
|
public String getStateColor() {
|
return stateColor;
|
}
|
|
public void setStateColor(String stateColor) {
|
this.stateColor = stateColor;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getStateDesc() {
|
return stateDesc;
|
}
|
|
public void setStateDesc(String stateDesc) {
|
this.stateDesc = stateDesc;
|
}
|
}
|