|
|
package com.yoho.unions.dal.model;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
public class OrdersAccessOry {
|
|
|
private Long orderCode;
|
|
|
|
|
|
private String isNew;
|
|
|
|
|
|
private Long unionid;
|
|
|
|
|
|
private String unionName;
|
|
|
|
|
|
private BigDecimal redenvelopesNumber;
|
|
|
|
|
|
private String promoCode;
|
|
|
|
|
|
private BigDecimal promoCodeDiscount;
|
|
|
|
|
|
private BigDecimal promoCodeAmount;
|
|
|
|
|
|
private Integer createTime;
|
|
|
|
|
|
private Integer storehouseId;
|
|
|
|
|
|
private String tailPayNoticePhone;
|
|
|
|
|
|
private BigDecimal orderDepositAmount;
|
|
|
|
|
|
private BigDecimal lastOrderDepositAmount;
|
|
|
|
|
|
private BigDecimal lastOrderTailPayAmount;
|
|
|
|
|
|
private String udid;
|
|
|
|
|
|
public Long getOrderCode() {
|
|
|
return orderCode;
|
|
|
}
|
|
|
|
|
|
public void setOrderCode(Long orderCode) {
|
|
|
this.orderCode = orderCode;
|
|
|
}
|
|
|
|
|
|
public String getIsNew() {
|
|
|
return isNew;
|
|
|
}
|
|
|
|
|
|
public void setIsNew(String isNew) {
|
|
|
this.isNew = isNew == null ? null : isNew.trim();
|
|
|
}
|
|
|
|
|
|
public Long getUnionid() {
|
|
|
return unionid;
|
|
|
}
|
|
|
|
|
|
public void setUnionid(Long unionid) {
|
|
|
this.unionid = unionid;
|
|
|
}
|
|
|
|
|
|
public String getUnionName() {
|
|
|
return unionName;
|
|
|
}
|
|
|
|
|
|
public void setUnionName(String unionName) {
|
|
|
this.unionName = unionName == null ? null : unionName.trim();
|
|
|
}
|
|
|
|
|
|
public BigDecimal getRedenvelopesNumber() {
|
|
|
return redenvelopesNumber;
|
|
|
}
|
|
|
|
|
|
public void setRedenvelopesNumber(BigDecimal redenvelopesNumber) {
|
|
|
this.redenvelopesNumber = redenvelopesNumber;
|
|
|
}
|
|
|
|
|
|
public String getPromoCode() {
|
|
|
return promoCode;
|
|
|
}
|
|
|
|
|
|
public void setPromoCode(String promoCode) {
|
|
|
this.promoCode = promoCode == null ? null : promoCode.trim();
|
|
|
}
|
|
|
|
|
|
public BigDecimal getPromoCodeDiscount() {
|
|
|
return promoCodeDiscount;
|
|
|
}
|
|
|
|
|
|
public void setPromoCodeDiscount(BigDecimal promoCodeDiscount) {
|
|
|
this.promoCodeDiscount = promoCodeDiscount;
|
|
|
}
|
|
|
|
|
|
public BigDecimal getPromoCodeAmount() {
|
|
|
return promoCodeAmount;
|
|
|
}
|
|
|
|
|
|
public void setPromoCodeAmount(BigDecimal promoCodeAmount) {
|
|
|
this.promoCodeAmount = promoCodeAmount;
|
|
|
}
|
|
|
|
|
|
public Integer getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Integer createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
|
|
|
public Integer getStorehouseId() {
|
|
|
return storehouseId;
|
|
|
}
|
|
|
|
|
|
public void setStorehouseId(Integer storehouseId) {
|
|
|
this.storehouseId = storehouseId;
|
|
|
}
|
|
|
|
|
|
public String getTailPayNoticePhone() {
|
|
|
return tailPayNoticePhone;
|
|
|
}
|
|
|
|
|
|
public void setTailPayNoticePhone(String tailPayNoticePhone) {
|
|
|
this.tailPayNoticePhone = tailPayNoticePhone == null ? null : tailPayNoticePhone.trim();
|
|
|
}
|
|
|
|
|
|
public BigDecimal getOrderDepositAmount() {
|
|
|
return orderDepositAmount;
|
|
|
}
|
|
|
|
|
|
public void setOrderDepositAmount(BigDecimal orderDepositAmount) {
|
|
|
this.orderDepositAmount = orderDepositAmount;
|
|
|
}
|
|
|
|
|
|
public BigDecimal getLastOrderDepositAmount() {
|
|
|
return lastOrderDepositAmount;
|
|
|
}
|
|
|
|
|
|
public void setLastOrderDepositAmount(BigDecimal lastOrderDepositAmount) {
|
|
|
this.lastOrderDepositAmount = lastOrderDepositAmount;
|
|
|
}
|
|
|
|
|
|
public BigDecimal getLastOrderTailPayAmount() {
|
|
|
return lastOrderTailPayAmount;
|
|
|
}
|
|
|
|
|
|
public void setLastOrderTailPayAmount(BigDecimal lastOrderTailPayAmount) {
|
|
|
this.lastOrderTailPayAmount = lastOrderTailPayAmount;
|
|
|
}
|
|
|
|
|
|
public String getUdid() {
|
|
|
return udid;
|
|
|
}
|
|
|
|
|
|
public void setUdid(String udid) {
|
|
|
this.udid = udid == null ? null : udid.trim();
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|