You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
2.1 KiB
112 lines
2.1 KiB
package com.hai.model;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
public class ApiThirdOrderModel {
|
|
|
|
/**
|
|
* 订单号码
|
|
*/
|
|
private String orderNo;
|
|
|
|
/**
|
|
* 来源订单号
|
|
*/
|
|
private String sourceOrderNo;
|
|
|
|
/**
|
|
* 订单金额
|
|
*/
|
|
private BigDecimal orderPrice;
|
|
|
|
/**
|
|
* 支付金额
|
|
*/
|
|
private BigDecimal payPrice;
|
|
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private Date createTime;
|
|
|
|
/**
|
|
* 支付时间
|
|
*/
|
|
private Date payTime;
|
|
|
|
/**
|
|
* 订单状态:1 待支付 2 已支付 3.已完成 4. 已退款 5.已取消 6.退款中 7.拒绝退款
|
|
*/
|
|
private Integer orderStatus;
|
|
|
|
/**
|
|
* 回调状态 100 :未回调 101:已回调 102:回调未响应 103:预备回调
|
|
*/
|
|
private Integer callbackStatus;
|
|
|
|
public String getOrderNo() {
|
|
return orderNo;
|
|
}
|
|
|
|
public void setOrderNo(String orderNo) {
|
|
this.orderNo = orderNo;
|
|
}
|
|
|
|
public String getSourceOrderNo() {
|
|
return sourceOrderNo;
|
|
}
|
|
|
|
public void setSourceOrderNo(String sourceOrderNo) {
|
|
this.sourceOrderNo = sourceOrderNo;
|
|
}
|
|
|
|
public BigDecimal getOrderPrice() {
|
|
return orderPrice;
|
|
}
|
|
|
|
public void setOrderPrice(BigDecimal orderPrice) {
|
|
this.orderPrice = orderPrice;
|
|
}
|
|
|
|
public BigDecimal getPayPrice() {
|
|
return payPrice;
|
|
}
|
|
|
|
public void setPayPrice(BigDecimal payPrice) {
|
|
this.payPrice = payPrice;
|
|
}
|
|
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
public Date getPayTime() {
|
|
return payTime;
|
|
}
|
|
|
|
public void setPayTime(Date payTime) {
|
|
this.payTime = payTime;
|
|
}
|
|
|
|
public Integer getOrderStatus() {
|
|
return orderStatus;
|
|
}
|
|
|
|
public void setOrderStatus(Integer orderStatus) {
|
|
this.orderStatus = orderStatus;
|
|
}
|
|
|
|
public Integer getCallbackStatus() {
|
|
return callbackStatus;
|
|
}
|
|
|
|
public void setCallbackStatus(Integer callbackStatus) {
|
|
this.callbackStatus = callbackStatus;
|
|
}
|
|
}
|
|
|