cashoutrecord.go 606 B

12345678910111213
  1. package models
  2. type CashOutRecord struct {
  3. UserName string `json:"userName" bson:"userName"` // 用户名字
  4. Status int `json:"status" bson:"status"` // 0:未审核 1:审核通过 2:审核失败
  5. Amount int `json:"amount" bson:"amount"` //
  6. AfterAmount int `json:"afterAmount" bson:"after_amount"` //
  7. Type int `json:"type" bson:"type"` // 货币内型
  8. Address string `json:"address" bson:"address"` // 地址
  9. CreateAt int64 `json:"createAt" bson:"createAt"`
  10. UpdateAt int64 `json:"updateAt" bson:"updateAt"`
  11. }