fix
This commit is contained in:
parent
2ade2cf3b4
commit
2848425315
|
@ -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{
|
||||
|
|
Loading…
Reference in New Issue