Browse Source

增加系统配置接口

kobe6258 4 months ago
parent
commit
2e25b578e6
1 changed files with 1 additions and 0 deletions
  1. 1 0
      models/trade_order.go

+ 1 - 0
models/trade_order.go

@@ -39,6 +39,7 @@ type TradeOrder struct {
 	TransactionId    string        `gorm:"column:transaction_id;size:255;default:null;comment:'第三方平台ID'" json:"transaction_id"`
 	OrgTransactionId string        `gorm:"column:org_transaction_id;size:255;default:null;comment:'原支付第三方平台ID'" json:"org_transaction_id"`
 	ProductOrderId   string        `gorm:"column:product_order_id;size:255;default:null;comment:'商品订单号'" json:"product_order_id"`
+	ProductName      string        `gorm:"column:product_name;size:255;default:null;comment:'商品名称'" json:"product_name"`
 	PaymentAccount   string        `gorm:"column:payment_account;size:255;default:null;comment:'支付账号'" json:"payment_account"`
 	PaymentWay       PaymentWay    `gorm:"column:payment_way;type:enum('wechat');default:null;comment:'支付渠道'" json:"payment_way"`
 	Amount           string        `gorm:"column:amount;size:20;default:null;comment:'支付金额'" json:"amount"`