From 34d0d75c8b7ed5cff86a82791d7b1b63f2912d39 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Sat, 14 Sep 2024 15:55:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/models/installment_payment_list.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models/installment_payment_list.go b/src/models/installment_payment_list.go index 434be1e..55c096b 100644 --- a/src/models/installment_payment_list.go +++ b/src/models/installment_payment_list.go @@ -13,6 +13,7 @@ type InstallmentPaymentList struct { GoodsTitle string `json:"goods_title" xorm:"not null default '' comment('标题') VARCHAR(255)"` GoodsImg string `json:"goods_imgg" xorm:"not null default '' comment('图片') VARCHAR(255)"` IsRepaidOff int `json:"is_repaid_off" xorm:"not null default 0 comment('是否已偿还完(0:未偿还完 1:已偿还完)') TINYINT(1)"` + CommissionTime int `json:"commission_time" xorm:"not null default 0 comment('') TINYINT(1)"` 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"` }