|
|
@ -11,6 +11,9 @@ public class MoneyBo { |
|
|
|
public String aliPayAccount; |
|
|
|
public String name; |
|
|
|
public String reason; |
|
|
|
public String orderId;//支付宝order_id
|
|
|
|
public String payFundOrderId;//pay_fund_order_id,支付宝支付资金流水号
|
|
|
|
public String transDate;//订单支付时间,格式为yyyy-MM-dd HH:mm:ss
|
|
|
|
public Integer status;//0发起申请,1审批成功,2转账中,3转账成功,-1转账失败
|
|
|
|
public long createdAt; |
|
|
|
|
|
|
@ -24,6 +27,9 @@ public class MoneyBo { |
|
|
|
this.aliPayAccount = r.getAliPayAccount(); |
|
|
|
this.name = r.getName(); |
|
|
|
this.reason = r.getReason(); |
|
|
|
this.orderId = r.getOrderId();//支付宝order_id
|
|
|
|
this.payFundOrderId = r.getPayFundOrderId();//pay_fund_order_id,支付宝支付资金流水号
|
|
|
|
this.transDate = r.getTransDate();//订单支付时间,格式为yyyy-MM-dd HH:mm:ss
|
|
|
|
this.status = r.getStatus(); |
|
|
|
this.createdAt = r.getCreatedAt().getTime(); |
|
|
|
|
|
|
|