|
|
package com.yoho.unions.dal.model;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.List;
|
|
|
|
|
|
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
|
|
|
|
|
|
/**
|
|
|
* Orders
|
|
|
* 类描述
|
|
|
*
|
|
|
* @author zhangyonghui
|
|
|
* @date 2015/11/3
|
|
|
*/
|
|
|
public class Orders {
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
*/
|
|
|
private static final long serialVersionUID = 187012492719939638L;
|
|
|
|
|
|
/**
|
|
|
* 新订单
|
|
|
*/
|
|
|
public static final Byte STATUS_NEW = 0;
|
|
|
|
|
|
/**
|
|
|
* 已支付
|
|
|
*/
|
|
|
public static final Byte STATUS_PAID = 1;
|
|
|
|
|
|
/**
|
|
|
* 已交寄
|
|
|
*/
|
|
|
public static final Byte STATUS_MAILED = 4;
|
|
|
|
|
|
/**
|
|
|
* 已完成
|
|
|
*/
|
|
|
public static final Byte STATUS_DONE = 6;
|
|
|
|
|
|
/**
|
|
|
* 订单状态-正常
|
|
|
*/
|
|
|
public static final Byte ATTRIBUTE_NORMAL = 1;
|
|
|
|
|
|
/**
|
|
|
* 订单状态-虚拟
|
|
|
*/
|
|
|
public static final Byte ATTRIBUTE_VIRTUAL = 3;
|
|
|
|
|
|
/**
|
|
|
* 订单状态-预售
|
|
|
*/
|
|
|
public static final Byte ATTRIBUTE_ADVANCE = 5;
|
|
|
|
|
|
/**
|
|
|
* 订单状态-特殊
|
|
|
*/
|
|
|
public static final Byte ATTRIBUTE_SPECIAL = 7;
|
|
|
|
|
|
/**
|
|
|
* 订单状态-定金预售
|
|
|
*/
|
|
|
public static final Byte ATTRIBUTE_DEPOSIT = 9;
|
|
|
|
|
|
/**
|
|
|
* 订单状态-已删除
|
|
|
*/
|
|
|
public static final Byte ORDERS_STATUS_DELETE = 0;
|
|
|
|
|
|
/**
|
|
|
* 支付状态-已付款
|
|
|
*/
|
|
|
public static final String PAYMENT_STATUS_YES = "Y";
|
|
|
|
|
|
/**
|
|
|
* 支付状态-未付款
|
|
|
*/
|
|
|
public static final String PAYMENT_STATUS_NO = "N";
|
|
|
|
|
|
/**
|
|
|
* 支付方式-在线支付
|
|
|
*/
|
|
|
public static final Byte PAYMENT_TYPE_ONLINE = 1;
|
|
|
|
|
|
/**
|
|
|
* 支付方式-货到付款
|
|
|
*/
|
|
|
public static final Byte PAYMENT_TYPE_COD = 2;
|
|
|
|
|
|
/**
|
|
|
* 支付方式-现金支付
|
|
|
*/
|
|
|
public static final Byte PAYMENT_TYPE_CASH = 3;
|
|
|
|
|
|
/**
|
|
|
* 支付方式-抵消支付
|
|
|
*/
|
|
|
public static final Byte PAYMENT_TYPE_OFFSET = 4;
|
|
|
|
|
|
/**
|
|
|
* 取消方式-用户
|
|
|
*/
|
|
|
public static final Byte CANCEL_TYPE_USER = 2;
|
|
|
|
|
|
/**
|
|
|
* 取消方式-客服取消
|
|
|
*/
|
|
|
public static final Byte CANCEL_TYPE_CS = 11;
|
|
|
|
|
|
/**
|
|
|
* 取消方式-备货中
|
|
|
*/
|
|
|
public static final Byte CANCEL_TYPE_PREPARING = 12;
|
|
|
|
|
|
/**
|
|
|
* 取消方式-配货中
|
|
|
*/
|
|
|
public static final Byte CANCEL_TYPE_DISTRIBUTION = 13;
|
|
|
/**
|
|
|
* 取消方式-发货后
|
|
|
*/
|
|
|
public static final Byte CANCEL_TYPE_POST_SHIP = 14;
|
|
|
/**
|
|
|
* 取消方式-运输中
|
|
|
*/
|
|
|
public static final Byte CANCEL_TYPE_IN_TRANSIT = 15;
|
|
|
|
|
|
/**
|
|
|
* 取消方式-系统自动取消
|
|
|
*/
|
|
|
public static final Byte CANCEL_TYPE_SYSTEM_AUTO = 16;
|
|
|
|
|
|
public static final int USER_NAME_MAX_LENGTH = 10;
|
|
|
|
|
|
/**
|
|
|
* 退款中
|
|
|
*/
|
|
|
public static final Byte REFUND_STATUS_REFUNDING = 6;
|
|
|
|
|
|
/**
|
|
|
* 退款完成
|
|
|
*/
|
|
|
public static final Byte REFUND_STATUS_FINISHED = 7;
|
|
|
|
|
|
|
|
|
/**
|
|
|
* @deprecated 使用uid、order_code 替换
|
|
|
*/
|
|
|
private Integer id;
|
|
|
|
|
|
/**
|
|
|
* 订单号
|
|
|
*/
|
|
|
private Long orderCode;
|
|
|
|
|
|
/**
|
|
|
* 用户ID
|
|
|
*/
|
|
|
private Integer uid;
|
|
|
|
|
|
/**
|
|
|
* 快递单号
|
|
|
*/
|
|
|
private String expressNumber;
|
|
|
|
|
|
/**
|
|
|
* 订单类型(渠道)
|
|
|
*/
|
|
|
private Byte orderType;
|
|
|
|
|
|
private String isInvoice;
|
|
|
|
|
|
/**
|
|
|
* 发票类型
|
|
|
*/
|
|
|
private String invoicesType;
|
|
|
|
|
|
/**
|
|
|
* 发票类型 ,引入电子发票后
|
|
|
*/
|
|
|
private Integer invoiceTypes;
|
|
|
|
|
|
/**
|
|
|
* 发票抬头
|
|
|
*/
|
|
|
private String invoicesPayable;
|
|
|
|
|
|
/**
|
|
|
* 使用有货币量
|
|
|
*/
|
|
|
private Integer yohoCoinNum;
|
|
|
|
|
|
/**
|
|
|
* 支付类型
|
|
|
*/
|
|
|
private Byte paymentType;
|
|
|
|
|
|
/**
|
|
|
* 支付方式
|
|
|
*/
|
|
|
private Byte payment;
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
*/
|
|
|
private String paymentAmount;
|
|
|
|
|
|
/**
|
|
|
* 银行编码
|
|
|
*/
|
|
|
private String bankCode;
|
|
|
|
|
|
/**
|
|
|
* 支付状态
|
|
|
*/
|
|
|
private String paymentStatus;
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
*/
|
|
|
private Byte shippingTypeId;
|
|
|
|
|
|
/**
|
|
|
* 运费金额
|
|
|
*/
|
|
|
private BigDecimal shippingCost;
|
|
|
|
|
|
/**
|
|
|
* 快递公司ID
|
|
|
*/
|
|
|
private Byte expressId;
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
*/
|
|
|
private String userName;
|
|
|
|
|
|
/**
|
|
|
* 收货人电话
|
|
|
*/
|
|
|
private String phone;
|
|
|
|
|
|
/**
|
|
|
* 手机号码
|
|
|
*/
|
|
|
private String mobile;
|
|
|
|
|
|
/**
|
|
|
* 地区编码
|
|
|
*/
|
|
|
private Integer areaCode;
|
|
|
|
|
|
/**
|
|
|
* 具体的地区
|
|
|
*/
|
|
|
private String Area;
|
|
|
|
|
|
/**
|
|
|
* 地质
|
|
|
*/
|
|
|
private String address;
|
|
|
|
|
|
/**
|
|
|
* 邮编
|
|
|
*/
|
|
|
private Integer zipCode;
|
|
|
|
|
|
/**
|
|
|
* 注释
|
|
|
*/
|
|
|
private String remark;
|
|
|
|
|
|
/**
|
|
|
* 到货时间
|
|
|
*/
|
|
|
private Integer receivingTime;
|
|
|
|
|
|
/**
|
|
|
* 收货时间(周六方便收货)
|
|
|
*/
|
|
|
private String receiptTime;
|
|
|
|
|
|
private Byte exceptionStatus;
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
*/
|
|
|
private String isLock;
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
*/
|
|
|
private String isArrive;
|
|
|
|
|
|
/**
|
|
|
* 订单状态
|
|
|
*/
|
|
|
private Byte status;
|
|
|
|
|
|
/**
|
|
|
* 是否取消
|
|
|
*/
|
|
|
private String isCancel;
|
|
|
|
|
|
/**
|
|
|
* 是否可以评论
|
|
|
*/
|
|
|
private String isComment;
|
|
|
|
|
|
private Byte cancelType;
|
|
|
|
|
|
private Byte exchangeStatus;
|
|
|
|
|
|
private Byte refundStatus;
|
|
|
|
|
|
private Integer arriveTime;
|
|
|
|
|
|
private Integer shipmentTime;
|
|
|
|
|
|
private Integer createTime;
|
|
|
|
|
|
private BigDecimal amount;
|
|
|
|
|
|
private String isPrintPrice;
|
|
|
|
|
|
private String isPreContact;
|
|
|
|
|
|
private String isNeedRapid;
|
|
|
|
|
|
private Integer updateTime;
|
|
|
|
|
|
private Byte attribute;
|
|
|
|
|
|
private String isPayed;
|
|
|
|
|
|
private Short activitiesId;
|
|
|
|
|
|
private Long parentOrderCode;
|
|
|
|
|
|
/**
|
|
|
* 订单状态
|
|
|
*/
|
|
|
private Byte ordersStatus;
|
|
|
|
|
|
private String canCommont;
|
|
|
|
|
|
private String expressCompany;
|
|
|
|
|
|
private String statusStr;
|
|
|
|
|
|
private BigDecimal goodsTotalAmount;
|
|
|
|
|
|
private BigDecimal couponsAmount;
|
|
|
|
|
|
private BigDecimal promotionAmount;
|
|
|
|
|
|
private boolean isSupportRefund;
|
|
|
|
|
|
private boolean isSupportExchange;
|
|
|
|
|
|
//用户是否支付,从order_pay表查询,支付回调不同步
|
|
|
private String user_confirm_paid = "N";
|
|
|
|
|
|
//是否使用限购码
|
|
|
private String use_limit_code = "N";
|
|
|
|
|
|
|
|
|
private String isJit = "N";
|
|
|
|
|
|
private String isJitAlreadySplit = "N";
|
|
|
|
|
|
//收货地址省份
|
|
|
private String province;
|
|
|
//收货地址城市
|
|
|
private String city;
|
|
|
//收货地址街区
|
|
|
private String district;
|
|
|
//收货人email
|
|
|
private String email;
|
|
|
//用户等级
|
|
|
private int userLevel;
|
|
|
//是否包含多个包裹 Y:分仓调拨,N:单个包裹
|
|
|
private String isMultiPackage;
|
|
|
|
|
|
/**
|
|
|
* 赠送的有货币数
|
|
|
*/
|
|
|
private int deliverYohoCoin;
|
|
|
|
|
|
//预售
|
|
|
private String isAdvance = "N";
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 是否展示倒计时计数器
|
|
|
*/
|
|
|
private String counter_flag;
|
|
|
|
|
|
/**
|
|
|
* 取消订单倒计时时间,单位:秒
|
|
|
*/
|
|
|
private int pay_lefttime;
|
|
|
|
|
|
/**
|
|
|
* 支付完成时间
|
|
|
*/
|
|
|
private String pay_finish_time;
|
|
|
|
|
|
/**
|
|
|
* 确认收货时间
|
|
|
*/
|
|
|
private String confirm_time;
|
|
|
|
|
|
/**
|
|
|
* 虚拟种类,兼容以后的虚拟商品,3为门票
|
|
|
*/
|
|
|
private String virtualType;
|
|
|
|
|
|
/**
|
|
|
* BLK参数 Y:N
|
|
|
*/
|
|
|
private String isBlk="N";
|
|
|
|
|
|
/**
|
|
|
* student Y:N
|
|
|
*/
|
|
|
private String isStudent="N";
|
|
|
//支付逾期时间
|
|
|
private String payExpire;
|
|
|
|
|
|
//订单定金金额
|
|
|
private String order_deposit_amount;
|
|
|
|
|
|
//订单尾款金额:订单金额-订单定金
|
|
|
private String order_tail_pay_amount;
|
|
|
|
|
|
private List<String> links;
|
|
|
|
|
|
private int ordersProcessStatus;
|
|
|
|
|
|
private String payment_stage;
|
|
|
|
|
|
private String canUpdateDeliveryAddress = "N";
|
|
|
|
|
|
private String canChangeProvince = "N";
|
|
|
|
|
|
public String getPayment_stage() {
|
|
|
return payment_stage;
|
|
|
}
|
|
|
|
|
|
public void setPayment_stage(String payment_stage) {
|
|
|
this.payment_stage = payment_stage;
|
|
|
}
|
|
|
|
|
|
public int getOrdersProcessStatus() {
|
|
|
return ordersProcessStatus;
|
|
|
}
|
|
|
|
|
|
public void setOrdersProcessStatus(int ordersProcessStatus) {
|
|
|
this.ordersProcessStatus = ordersProcessStatus;
|
|
|
}
|
|
|
|
|
|
public List<String> getLinks() {
|
|
|
return links;
|
|
|
}
|
|
|
|
|
|
public void setLinks(List<String> links) {
|
|
|
this.links = links;
|
|
|
}
|
|
|
|
|
|
public String getIsStudent() {
|
|
|
return isStudent;
|
|
|
}
|
|
|
|
|
|
public void setIsStudent(String isStudent) {
|
|
|
this.isStudent = isStudent;
|
|
|
}
|
|
|
|
|
|
public String getIsBlk() {
|
|
|
return isBlk;
|
|
|
}
|
|
|
|
|
|
public void setIsBlk(String isBlk) {
|
|
|
this.isBlk = isBlk;
|
|
|
}
|
|
|
|
|
|
public String getPay_finish_time() {
|
|
|
return pay_finish_time;
|
|
|
}
|
|
|
|
|
|
public void setPay_finish_time(String pay_finish_time) {
|
|
|
this.pay_finish_time = pay_finish_time;
|
|
|
}
|
|
|
|
|
|
public String getConfirm_time() {
|
|
|
return confirm_time;
|
|
|
}
|
|
|
|
|
|
public void setConfirm_time(String confirm_time) {
|
|
|
this.confirm_time = confirm_time;
|
|
|
}
|
|
|
|
|
|
|
|
|
public String getCounter_flag() {
|
|
|
return counter_flag;
|
|
|
}
|
|
|
|
|
|
|
|
|
public void setCounter_flag(String counter_flag) {
|
|
|
this.counter_flag = counter_flag;
|
|
|
}
|
|
|
|
|
|
|
|
|
public int getPay_lefttime() {
|
|
|
return pay_lefttime;
|
|
|
}
|
|
|
|
|
|
|
|
|
public void setPay_lefttime(int pay_lefttime) {
|
|
|
this.pay_lefttime = pay_lefttime;
|
|
|
}
|
|
|
|
|
|
public void setPayExpire(String payExpire) {
|
|
|
this.payExpire = payExpire;
|
|
|
}
|
|
|
|
|
|
public String getPayExpire() {
|
|
|
return payExpire;
|
|
|
}
|
|
|
|
|
|
public boolean isSupportRefund() {
|
|
|
return isSupportRefund;
|
|
|
}
|
|
|
|
|
|
public void setSupportRefund(boolean isSupportRefund) {
|
|
|
this.isSupportRefund = isSupportRefund;
|
|
|
}
|
|
|
|
|
|
public boolean isSupportExchange() {
|
|
|
return isSupportExchange;
|
|
|
}
|
|
|
|
|
|
public void setSupportExchange(boolean isSupportExchange) {
|
|
|
this.isSupportExchange = isSupportExchange;
|
|
|
}
|
|
|
|
|
|
public BigDecimal getPromotionAmount() {
|
|
|
return promotionAmount;
|
|
|
}
|
|
|
|
|
|
public void setPromotionAmount(BigDecimal promotionAmount) {
|
|
|
this.promotionAmount = promotionAmount;
|
|
|
}
|
|
|
|
|
|
public BigDecimal getCouponsAmount() {
|
|
|
return couponsAmount;
|
|
|
}
|
|
|
|
|
|
public void setCouponsAmount(BigDecimal couponsAmount) {
|
|
|
this.couponsAmount = couponsAmount;
|
|
|
}
|
|
|
|
|
|
public BigDecimal getGoodsTotalAmount() {
|
|
|
return goodsTotalAmount;
|
|
|
}
|
|
|
|
|
|
public void setGoodsTotalAmount(BigDecimal goodsTotalAmount) {
|
|
|
this.goodsTotalAmount = goodsTotalAmount;
|
|
|
}
|
|
|
|
|
|
public String getStatusStr() {
|
|
|
return statusStr;
|
|
|
}
|
|
|
|
|
|
public void setStatusStr(String statusStr) {
|
|
|
this.statusStr = statusStr;
|
|
|
}
|
|
|
|
|
|
public String getExpressCompany() {
|
|
|
return expressCompany;
|
|
|
}
|
|
|
|
|
|
public void setExpressCompany(String expressCompany) {
|
|
|
this.expressCompany = expressCompany;
|
|
|
}
|
|
|
|
|
|
public String getArea() {
|
|
|
return Area;
|
|
|
}
|
|
|
|
|
|
public void setArea(String area) {
|
|
|
Area = area;
|
|
|
}
|
|
|
|
|
|
public String getPaymentAmount() {
|
|
|
return paymentAmount;
|
|
|
}
|
|
|
|
|
|
public void setPaymentAmount(String paymentAmount) {
|
|
|
this.paymentAmount = paymentAmount;
|
|
|
}
|
|
|
|
|
|
private List<OrdersGoods> ordersGoodsList;
|
|
|
|
|
|
public String getCanCommont() {
|
|
|
return canCommont;
|
|
|
}
|
|
|
|
|
|
public void setCanCommont(String canCommont) {
|
|
|
this.canCommont = canCommont;
|
|
|
}
|
|
|
|
|
|
public List<OrdersGoods> getOrdersGoodsList() {
|
|
|
return ordersGoodsList;
|
|
|
}
|
|
|
|
|
|
public void setOrdersGoodsList(List<OrdersGoods> ordersGoodsList) {
|
|
|
this.ordersGoodsList = ordersGoodsList;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @deprecated 使用uid、order_code 替换
|
|
|
*/
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @deprecated 使用uid、order_code 替换
|
|
|
*/
|
|
|
public void setId(Integer id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
public Long getOrderCode() {
|
|
|
return orderCode;
|
|
|
}
|
|
|
|
|
|
public void setOrderCode(Long orderCode) {
|
|
|
this.orderCode = orderCode;
|
|
|
}
|
|
|
|
|
|
public Integer getUid() {
|
|
|
return uid;
|
|
|
}
|
|
|
|
|
|
public void setUid(Integer uid) {
|
|
|
this.uid = uid;
|
|
|
}
|
|
|
|
|
|
public String getExpressNumber() {
|
|
|
return expressNumber;
|
|
|
}
|
|
|
|
|
|
public void setExpressNumber(String expressNumber) {
|
|
|
this.expressNumber = expressNumber == null ? null : expressNumber.trim();
|
|
|
}
|
|
|
|
|
|
public Byte getOrderType() {
|
|
|
return orderType;
|
|
|
}
|
|
|
|
|
|
public void setOrderType(Byte orderType) {
|
|
|
this.orderType = orderType;
|
|
|
}
|
|
|
|
|
|
public String getIsInvoice() {
|
|
|
return isInvoice;
|
|
|
}
|
|
|
|
|
|
public void setIsInvoice(String isInvoice) {
|
|
|
this.isInvoice = isInvoice == null ? null : isInvoice.trim();
|
|
|
}
|
|
|
|
|
|
public String getInvoicesType() {
|
|
|
return invoicesType;
|
|
|
}
|
|
|
|
|
|
public void setInvoicesType(String invoicesType) {
|
|
|
this.invoicesType = invoicesType == null ? null : invoicesType.trim();
|
|
|
}
|
|
|
|
|
|
public String getInvoicesPayable() {
|
|
|
return invoicesPayable;
|
|
|
}
|
|
|
|
|
|
public void setInvoicesPayable(String invoicesPayable) {
|
|
|
this.invoicesPayable = invoicesPayable == null ? null : invoicesPayable.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getYohoCoinNum() {
|
|
|
return yohoCoinNum;
|
|
|
}
|
|
|
|
|
|
public void setYohoCoinNum(Integer yohoCoinNum) {
|
|
|
this.yohoCoinNum = yohoCoinNum;
|
|
|
}
|
|
|
|
|
|
public Byte getPaymentType() {
|
|
|
return paymentType;
|
|
|
}
|
|
|
|
|
|
public void setPaymentType(Byte paymentType) {
|
|
|
this.paymentType = paymentType;
|
|
|
}
|
|
|
|
|
|
public Byte getPayment() {
|
|
|
return payment;
|
|
|
}
|
|
|
|
|
|
public void setPayment(Byte payment) {
|
|
|
this.payment = payment;
|
|
|
}
|
|
|
|
|
|
public String getBankCode() {
|
|
|
return bankCode;
|
|
|
}
|
|
|
|
|
|
public void setBankCode(String bankCode) {
|
|
|
this.bankCode = bankCode == null ? null : bankCode.trim();
|
|
|
}
|
|
|
|
|
|
public String getPaymentStatus() {
|
|
|
return paymentStatus;
|
|
|
}
|
|
|
|
|
|
public void setPaymentStatus(String paymentStatus) {
|
|
|
this.paymentStatus = paymentStatus == null ? null : paymentStatus.trim();
|
|
|
}
|
|
|
|
|
|
public Byte getShippingTypeId() {
|
|
|
return shippingTypeId;
|
|
|
}
|
|
|
|
|
|
public void setShippingTypeId(Byte shippingTypeId) {
|
|
|
this.shippingTypeId = shippingTypeId;
|
|
|
}
|
|
|
|
|
|
public BigDecimal getShippingCost() {
|
|
|
return shippingCost;
|
|
|
}
|
|
|
|
|
|
public void setShippingCost(BigDecimal shippingCost) {
|
|
|
this.shippingCost = shippingCost;
|
|
|
}
|
|
|
|
|
|
public Byte getExpressId() {
|
|
|
return expressId;
|
|
|
}
|
|
|
|
|
|
public void setExpressId(Byte expressId) {
|
|
|
this.expressId = expressId;
|
|
|
}
|
|
|
|
|
|
public String getUserName() {
|
|
|
return userName;
|
|
|
}
|
|
|
|
|
|
public void setUserName(String userName) {
|
|
|
this.userName = userName == null ? null : userName.trim();
|
|
|
}
|
|
|
|
|
|
public String getPhone() {
|
|
|
return phone;
|
|
|
}
|
|
|
|
|
|
public void setPhone(String phone) {
|
|
|
this.phone = phone == null ? null : phone.trim();
|
|
|
}
|
|
|
|
|
|
public String getMobile() {
|
|
|
return mobile;
|
|
|
}
|
|
|
|
|
|
public void setMobile(String mobile) {
|
|
|
this.mobile = mobile == null ? null : mobile.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getAreaCode() {
|
|
|
return areaCode;
|
|
|
}
|
|
|
|
|
|
public void setAreaCode(Integer areaCode) {
|
|
|
this.areaCode = areaCode;
|
|
|
}
|
|
|
|
|
|
public String getAddress() {
|
|
|
return address;
|
|
|
}
|
|
|
|
|
|
public void setAddress(String address) {
|
|
|
this.address = address == null ? null : address.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getZipCode() {
|
|
|
return zipCode;
|
|
|
}
|
|
|
|
|
|
public void setZipCode(Integer zipCode) {
|
|
|
this.zipCode = zipCode;
|
|
|
}
|
|
|
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
|
|
|
|
public void setRemark(String remark) {
|
|
|
this.remark = remark == null ? null : remark.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getReceivingTime() {
|
|
|
return receivingTime;
|
|
|
}
|
|
|
|
|
|
public void setReceivingTime(Integer receivingTime) {
|
|
|
this.receivingTime = receivingTime;
|
|
|
}
|
|
|
|
|
|
public String getReceiptTime() {
|
|
|
return receiptTime;
|
|
|
}
|
|
|
|
|
|
public void setReceiptTime(String receiptTime) {
|
|
|
this.receiptTime = receiptTime == null ? null : receiptTime.trim();
|
|
|
}
|
|
|
|
|
|
public Byte getExceptionStatus() {
|
|
|
return exceptionStatus;
|
|
|
}
|
|
|
|
|
|
public void setExceptionStatus(Byte exceptionStatus) {
|
|
|
this.exceptionStatus = exceptionStatus;
|
|
|
}
|
|
|
|
|
|
public String getIsLock() {
|
|
|
return isLock;
|
|
|
}
|
|
|
|
|
|
public void setIsLock(String isLock) {
|
|
|
this.isLock = isLock == null ? null : isLock.trim();
|
|
|
}
|
|
|
|
|
|
public String getIsArrive() {
|
|
|
return isArrive;
|
|
|
}
|
|
|
|
|
|
public void setIsArrive(String isArrive) {
|
|
|
this.isArrive = isArrive == null ? null : isArrive.trim();
|
|
|
}
|
|
|
|
|
|
public Byte getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(Byte status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
public String getIsCancel() {
|
|
|
return isCancel;
|
|
|
}
|
|
|
|
|
|
public void setIsCancel(String isCancel) {
|
|
|
this.isCancel = isCancel == null ? null : isCancel.trim();
|
|
|
}
|
|
|
|
|
|
public Byte getCancelType() {
|
|
|
return cancelType;
|
|
|
}
|
|
|
|
|
|
public void setCancelType(Byte cancelType) {
|
|
|
this.cancelType = cancelType;
|
|
|
}
|
|
|
|
|
|
public Byte getExchangeStatus() {
|
|
|
return exchangeStatus;
|
|
|
}
|
|
|
|
|
|
public void setExchangeStatus(Byte exchangeStatus) {
|
|
|
this.exchangeStatus = exchangeStatus;
|
|
|
}
|
|
|
|
|
|
public Byte getRefundStatus() {
|
|
|
return refundStatus;
|
|
|
}
|
|
|
|
|
|
public void setRefundStatus(Byte refundStatus) {
|
|
|
this.refundStatus = refundStatus;
|
|
|
}
|
|
|
|
|
|
public Integer getArriveTime() {
|
|
|
return arriveTime;
|
|
|
}
|
|
|
|
|
|
public void setArriveTime(Integer arriveTime) {
|
|
|
this.arriveTime = arriveTime;
|
|
|
}
|
|
|
|
|
|
public Integer getShipmentTime() {
|
|
|
return shipmentTime;
|
|
|
}
|
|
|
|
|
|
public void setShipmentTime(Integer shipmentTime) {
|
|
|
this.shipmentTime = shipmentTime;
|
|
|
}
|
|
|
|
|
|
public Integer getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Integer createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
|
|
|
public BigDecimal getAmount() {
|
|
|
return amount;
|
|
|
}
|
|
|
|
|
|
public void setAmount(BigDecimal amount) {
|
|
|
this.amount = amount;
|
|
|
}
|
|
|
|
|
|
public String getIsPrintPrice() {
|
|
|
return isPrintPrice;
|
|
|
}
|
|
|
|
|
|
public void setIsPrintPrice(String isPrintPrice) {
|
|
|
this.isPrintPrice = isPrintPrice == null ? null : isPrintPrice.trim();
|
|
|
}
|
|
|
|
|
|
public String getIsPreContact() {
|
|
|
return isPreContact;
|
|
|
}
|
|
|
|
|
|
public void setIsPreContact(String isPreContact) {
|
|
|
this.isPreContact = isPreContact == null ? null : isPreContact.trim();
|
|
|
}
|
|
|
|
|
|
public String getIsComment() {
|
|
|
return isComment;
|
|
|
}
|
|
|
|
|
|
public void setIsComment(String isComment) {
|
|
|
this.isComment = isComment;
|
|
|
}
|
|
|
|
|
|
public String getIsNeedRapid() {
|
|
|
return isNeedRapid;
|
|
|
}
|
|
|
|
|
|
public void setIsNeedRapid(String isNeedRapid) {
|
|
|
this.isNeedRapid = isNeedRapid == null ? null : isNeedRapid.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getUpdateTime() {
|
|
|
return updateTime;
|
|
|
}
|
|
|
|
|
|
public void setUpdateTime(Integer updateTime) {
|
|
|
this.updateTime = updateTime;
|
|
|
}
|
|
|
|
|
|
public Byte getAttribute() {
|
|
|
return attribute;
|
|
|
}
|
|
|
|
|
|
public void setAttribute(Byte attribute) {
|
|
|
this.attribute = attribute;
|
|
|
}
|
|
|
|
|
|
public String getIsPayed() {
|
|
|
return isPayed;
|
|
|
}
|
|
|
|
|
|
public void setIsPayed(String isPayed) {
|
|
|
this.isPayed = isPayed == null ? null : isPayed.trim();
|
|
|
}
|
|
|
|
|
|
public Short getActivitiesId() {
|
|
|
return activitiesId;
|
|
|
}
|
|
|
|
|
|
public void setActivitiesId(Short activitiesId) {
|
|
|
this.activitiesId = activitiesId;
|
|
|
}
|
|
|
|
|
|
public Long getParentOrderCode() {
|
|
|
return parentOrderCode;
|
|
|
}
|
|
|
|
|
|
public void setParentOrderCode(Long parentOrderCode) {
|
|
|
this.parentOrderCode = parentOrderCode;
|
|
|
}
|
|
|
|
|
|
public Byte getOrdersStatus() {
|
|
|
return ordersStatus;
|
|
|
}
|
|
|
|
|
|
public void setOrdersStatus(Byte ordersStatus) {
|
|
|
this.ordersStatus = ordersStatus;
|
|
|
}
|
|
|
|
|
|
public String getUser_confirm_paid() {
|
|
|
return user_confirm_paid;
|
|
|
}
|
|
|
|
|
|
public void setUser_confirm_paid(String user_confirm_paid) {
|
|
|
this.user_confirm_paid = user_confirm_paid;
|
|
|
}
|
|
|
|
|
|
public String getUse_limit_code() {
|
|
|
if ("N".equals(use_limit_code)) {
|
|
|
//虚拟订单也不能再次购物
|
|
|
return this.attribute == ATTRIBUTE_VIRTUAL ? "Y" : use_limit_code;
|
|
|
}
|
|
|
return use_limit_code;
|
|
|
}
|
|
|
|
|
|
public void setUse_limit_code(String use_limit_code) {
|
|
|
this.use_limit_code = use_limit_code;
|
|
|
}
|
|
|
|
|
|
public String getIsJit() {
|
|
|
return isJit;
|
|
|
}
|
|
|
|
|
|
public void setIsJit(String isJit) {
|
|
|
this.isJit = isJit;
|
|
|
}
|
|
|
|
|
|
public String getIsJitAlreadySplit() {
|
|
|
return isJitAlreadySplit;
|
|
|
}
|
|
|
|
|
|
public void setIsJitAlreadySplit(String isJitAlreadySplit) {
|
|
|
this.isJitAlreadySplit = isJitAlreadySplit;
|
|
|
}
|
|
|
|
|
|
public String getProvince() {
|
|
|
return province;
|
|
|
}
|
|
|
|
|
|
public void setProvince(String province) {
|
|
|
this.province = province;
|
|
|
}
|
|
|
|
|
|
public String getCity() {
|
|
|
return city;
|
|
|
}
|
|
|
|
|
|
public void setCity(String city) {
|
|
|
this.city = city;
|
|
|
}
|
|
|
|
|
|
public String getDistrict() {
|
|
|
return district;
|
|
|
}
|
|
|
|
|
|
public void setDistrict(String district) {
|
|
|
this.district = district;
|
|
|
}
|
|
|
|
|
|
public String getEmail() {
|
|
|
return email;
|
|
|
}
|
|
|
|
|
|
public void setEmail(String email) {
|
|
|
this.email = email;
|
|
|
}
|
|
|
|
|
|
public int getUserLevel() {
|
|
|
return userLevel;
|
|
|
}
|
|
|
|
|
|
public void setUserLevel(int userLevel) {
|
|
|
this.userLevel = userLevel;
|
|
|
}
|
|
|
|
|
|
|
|
|
public String getIsAdvance() {
|
|
|
return isAdvance;
|
|
|
}
|
|
|
|
|
|
public void setIsAdvance(String isAdvance) {
|
|
|
this.isAdvance = isAdvance;
|
|
|
}
|
|
|
|
|
|
|
|
|
public int getDeliverYohoCoin() {
|
|
|
return deliverYohoCoin;
|
|
|
}
|
|
|
|
|
|
|
|
|
public void setDeliverYohoCoin(int deliverYohoCoin) {
|
|
|
this.deliverYohoCoin = deliverYohoCoin;
|
|
|
}
|
|
|
|
|
|
public String getIsMultiPackage() {
|
|
|
return isMultiPackage;
|
|
|
}
|
|
|
|
|
|
public void setIsMultiPackage(String isMultiPackage) {
|
|
|
this.isMultiPackage = isMultiPackage;
|
|
|
}
|
|
|
|
|
|
public void setIsJitBySupplierId(Integer supplierId) {
|
|
|
this.setIsJit("N");
|
|
|
if (supplierId != null && supplierId > 0) {
|
|
|
if (supplierId > 0) {
|
|
|
this.setIsJit("Y");
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
public Integer getInvoiceTypes() {
|
|
|
return invoiceTypes;
|
|
|
}
|
|
|
|
|
|
public void setInvoiceTypes(Integer invoiceTypes) {
|
|
|
this.invoiceTypes = invoiceTypes;
|
|
|
}
|
|
|
|
|
|
public String getVirtualType() {
|
|
|
return virtualType;
|
|
|
}
|
|
|
|
|
|
public void setVirtualType(String virtualType) {
|
|
|
this.virtualType = virtualType;
|
|
|
}
|
|
|
|
|
|
public String getOrder_deposit_amount() {
|
|
|
return order_deposit_amount;
|
|
|
}
|
|
|
|
|
|
public void setOrder_deposit_amount(String order_deposit_amount) {
|
|
|
this.order_deposit_amount = order_deposit_amount;
|
|
|
}
|
|
|
|
|
|
public String getOrder_tail_pay_amount() {
|
|
|
return order_tail_pay_amount;
|
|
|
}
|
|
|
|
|
|
public void setOrder_tail_pay_amount(String order_tail_pay_amount) {
|
|
|
this.order_tail_pay_amount = order_tail_pay_amount;
|
|
|
}
|
|
|
|
|
|
public String getCanUpdateDeliveryAddress() {
|
|
|
return canUpdateDeliveryAddress;
|
|
|
}
|
|
|
|
|
|
public void setCanUpdateDeliveryAddress(String canUpdateDeliveryAddress) {
|
|
|
this.canUpdateDeliveryAddress = canUpdateDeliveryAddress;
|
|
|
}
|
|
|
|
|
|
public String getCanChangeProvince() {
|
|
|
return canChangeProvince;
|
|
|
}
|
|
|
|
|
|
public void setCanChangeProvince(String canChangeProvince) {
|
|
|
this.canChangeProvince = canChangeProvince;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return ReflectionToStringBuilder.toString(this);
|
|
|
}
|
|
|
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|