cashoutrecord.go 684 B

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