From 6952c1fbce49c57de0d002990a34d60082e25dbc Mon Sep 17 00:00:00 2001 From: lwl0608 Date: Mon, 19 Feb 2024 21:13:18 +0800 Subject: [PATCH] fix --- app/mix/dao/mysql.go | 8 ++++---- dbstruct/vas_mysql.go | 7 +++++++ 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/app/mix/dao/mysql.go b/app/mix/dao/mysql.go index da870c62..421dbc65 100644 --- a/app/mix/dao/mysql.go +++ b/app/mix/dao/mysql.go @@ -817,16 +817,16 @@ func (m *Mysql) GetWithdrawOrdersByMid(ctx *gin.Context, tx *sqlx.Tx, mid, st, e func (m *Mysql) CreateWithdrawDiamondsHis(ctx *gin.Context, tx *sqlx.Tx, h *dbstruct.WithdrawDiamondsHis) error { var err error sqlStr := "insert into " + TableWithdrawDiamondsHis + - " (mid, income_ch_id, order_id, ct, before_withdraw_diamonds, after_withdraw_diamonds, `change`) " + - " values (?,?,?,?,?,?,?) " + " (mid, income_ch_id, order_id, ct, before_withdraw_diamonds, after_withdraw_diamonds, `change`, product_id) " + + " values (?,?,?,?,?,?,?,?) " if tx != nil { _, err = tx.ExecContext(ctx, sqlStr, - h.GetMid(), h.GetIncomeChId(), h.GetOrderId(), h.GetCt(), h.GetBeforeWithdrawDiamonds(), h.GetAfterWithdrawDiamonds(), h.GetChange(), + h.GetMid(), h.GetIncomeChId(), h.GetOrderId(), h.GetCt(), h.GetBeforeWithdrawDiamonds(), h.GetAfterWithdrawDiamonds(), h.GetChange(), h.GetProductId(), ) } else { db := m.getDBVas() _, err = db.ExecContext(ctx, sqlStr, - h.GetMid(), h.GetIncomeChId(), h.GetOrderId(), h.GetCt(), h.GetBeforeWithdrawDiamonds(), h.GetAfterWithdrawDiamonds(), h.GetChange(), + h.GetMid(), h.GetIncomeChId(), h.GetOrderId(), h.GetCt(), h.GetBeforeWithdrawDiamonds(), h.GetAfterWithdrawDiamonds(), h.GetChange(), h.GetProductId(), ) } if err != nil { diff --git a/dbstruct/vas_mysql.go b/dbstruct/vas_mysql.go index 24f4643c..adc77539 100644 --- a/dbstruct/vas_mysql.go +++ b/dbstruct/vas_mysql.go @@ -856,6 +856,13 @@ func (p *WithdrawDiamondsHis) GetChange() int64 { return 0 } +func (p *WithdrawDiamondsHis) GetProductId() string { + if p != nil && p.ProductId != nil { + return *p.ProductId + } + return "" +} + type UserVasMembershipUnlock struct { Id *int64 `json:"id" db:"id"` Mid *int64 `json:"mid" db:"mid"`