支付优化

This commit is contained in:
2024-11-25 10:53:09 +08:00
parent 2ea19dcf03
commit 5019fbd3fc
9 changed files with 257 additions and 35 deletions

View File

@@ -21,5 +21,7 @@ public class OrderInfo extends BaseEntity{
private String orderStatus;//订单状态
private String note;
private String paymentType;//支付方式
}

View File

@@ -26,4 +26,8 @@ public class PaymentInfo extends BaseEntity{
// 当前支付是否已邮件通知 0 || 1
private Integer notified;
private String paymentMethod;
private String last4;
}

View File

@@ -22,14 +22,7 @@ public class SubscriptionInfo extends BaseEntity{
// active || expired
private String status = "active";
// 是否自动续订
private byte autoRenewal = (byte)1;
// 支付方式
private String paymentMethod;
// 如果是用卡支付,可以看到银行卡最后四位
private String last4;
private byte cancelNotified = (byte)0;
// 续订的下一个付款日
private String nextPayDate;