From cbca924899715ca39d5d76f8a05facd93fd8fcb2 Mon Sep 17 00:00:00 2001 From: JNG <365252428@qq.com> Date: Thu, 11 Jun 2026 16:42:12 +0800 Subject: [PATCH] Update bundle_order_records.go --- internal/model/bundle_order_records.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/model/bundle_order_records.go b/internal/model/bundle_order_records.go index a4adbe6..0df06b8 100644 --- a/internal/model/bundle_order_records.go +++ b/internal/model/bundle_order_records.go @@ -51,7 +51,7 @@ type BundleOrderRecords struct { OrderMode int32 `gorm:"column:order_mode;type:int;default:1;comment:订单模式 1:普通 2:先用后付;index:idx_customer_order_mode,priority:2" json:"orderMode"` DueTime string `gorm:"column:due_time;type:varchar(64);comment:先用后付到期应付时间" json:"dueTime"` PayLaterStatus int32 `gorm:"column:pay_later_status;type:int;default:0;comment:先用后付状态 0:无 1:待付款 2:已付款 3:逾期未付;index:idx_paylater_status" json:"payLaterStatus"` - ContractTplType int32 `gorm:"column:contract_tpl_type;type:int;default:0;comment:合同模板类型 1:套餐普通 2:套餐先用后付 3:增值先用后付" json:"contractTplType"` + ContractTplType int32 `gorm:"column:contract_tpl_type;type:int;default:1;comment:合同模板类型 1:套餐普通 2:套餐先用后付 3:增值先用后付" json:"contractTplType"` OrderType int32 `gorm:"column:order_type;type:int;default:1;comment:订单类型 1:套餐订单 2:增值服务订单" json:"orderType"` } type BundleOrderValueAdd struct {