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"` }