This commit is contained in:
lwl0608 2024-12-09 17:11:34 +08:00
parent 2ade2cf3b4
commit 2848425315
1 changed files with 3 additions and 3 deletions

View File

@ -297,11 +297,11 @@ func (m *Mongo) UpsertAlipayBalance(ctx context.Context, id string, balance int6
col := m.getColAlipayBalance()
up := qmgo.M{
operator.SetOnInsert: qmgo.M{
"ct": time.Now().Unix(),
"ct": time.Now().Unix(),
"withdraw_ut": 0,
},
operator.Set: qmgo.M{
"balance": balance,
"withdraw_ut": 0,
"balance": balance,
},
}
err := col.UpdateId(ctx, id, up, qoptions.UpdateOptions{