|
|
@@ -6,6 +6,7 @@ type InstallmentPaymentList struct { |
|
|
|
GoodsId int `json:"goods_id" xorm:"not null default 0 comment('商品ID') INT(11)"` |
|
|
|
OrdId int64 `json:"ord_id" xorm:"not null default 0 comment('订单ID') BIGINT(20)"` |
|
|
|
TotalAmount string `json:"total_amount" xorm:"not null default 0.00 comment('总金额') DECIMAL(12,2)"` |
|
|
|
Commission string `json:"commission" xorm:"not null default 0.00 comment('总金额') DECIMAL(12,2)"` |
|
|
|
InstallmentNums int `json:"installment_nums" xorm:"not null default 0 comment('分期数') TINYINT(3)"` |
|
|
|
AlreadyRepaidInstallmentNums int `json:"already_repaid_installment_nums" xorm:"not null default 0 comment('已换分期数') TINYINT(3)"` |
|
|
|
RepaymentAmountPerInstallment string `json:"repayment_amount_per_installment" xorm:"not null default 0.00 comment('每期还款金额') DECIMAL(12,2)"` |
|
|
|