From 9ebf54e21441faebd10c7596fa7268eb5860e499 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Thu, 20 Jun 2024 18:04:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E6=9C=9F=E4=BB=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/models/installment_payment_repaid_flow.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models/installment_payment_repaid_flow.go b/src/models/installment_payment_repaid_flow.go index 8e374d1..1cd848a 100644 --- a/src/models/installment_payment_repaid_flow.go +++ b/src/models/installment_payment_repaid_flow.go @@ -8,4 +8,5 @@ type InstallmentPaymentRepaidFlow struct { WhichRepaymentPeriod int `json:"which_repayment_period" xorm:"not null default 1 comment('第x还款') TINYINT(3)"` CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('创建时间') DATETIME"` UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('更新时间') DATETIME"` + OrdId int64 `json:"ord_id" xorm:"not null default 0 comment('订单ID') BIGINT(20)"` }