Browse Source

Merge remote-tracking branch 'origin/master'

zhengtao 9 months ago
parent
commit
24b50a6481
1 changed files with 9 additions and 6 deletions
  1. 9 6
      game/game_cluster/internal/mdb/models/cashoutrecord.go

+ 9 - 6
game/game_cluster/internal/mdb/models/cashoutrecord.go

@@ -1,10 +1,13 @@
 package models
 
 type CashOutRecord struct {
-	UserName string `json:"userName" bson:"userName"`
-	Status   int    `json:"status" bson:"status"`
-	Amount   int    `json:"amount" bson:"amount"`
-	Type     int    `json:"type" bson:"type"`
-	CreateAt int64  `json:"createAt" bson:"createAt"`
-	UpdateAt int64  `json:"updateAt" bson:"updateAt"`
+	UserName    string `json:"userName" bson:"userName"`        // 用户名字
+	Status      int    `json:"status" bson:"status"`            // 0:未审核 1:审核通过 2:审核失败
+	Amount      int    `json:"amount" bson:"amount"`            //
+	AfterAmount int    `json:"afterAmount" bson:"after_amount"` //
+	Type        int    `json:"type" bson:"type"`                // 货币内型
+	Address     string `json:"address" bson:"address"`          // 地址
+
+	CreateAt int64 `json:"createAt" bson:"createAt"`
+	UpdateAt int64 `json:"updateAt" bson:"updateAt"`
 }