mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-12 04:03:44 +08:00
发布v2.15.1版本,更新内容请查看:https://github.com/bufanyun/hotgo/blob/v2.0/docs/guide-zh-CN/start-update-log.md
This commit is contained in:
@@ -10,14 +10,14 @@ import (
|
||||
|
||||
// AdminCash is the golang structure for table admin_cash.
|
||||
type AdminCash struct {
|
||||
Id int64 `json:"id" description:"ID"`
|
||||
MemberId int64 `json:"memberId" description:"管理员ID"`
|
||||
Money float64 `json:"money" description:"提现金额"`
|
||||
Fee float64 `json:"fee" description:"手续费"`
|
||||
LastMoney float64 `json:"lastMoney" description:"最终到账金额"`
|
||||
Ip string `json:"ip" description:"申请人IP"`
|
||||
Status int64 `json:"status" description:"状态码"`
|
||||
Msg string `json:"msg" description:"处理结果"`
|
||||
HandleAt *gtime.Time `json:"handleAt" description:"处理时间"`
|
||||
CreatedAt *gtime.Time `json:"createdAt" description:"申请时间"`
|
||||
Id int64 `json:"id" orm:"id" description:"ID"`
|
||||
MemberId int64 `json:"memberId" orm:"member_id" description:"管理员ID"`
|
||||
Money float64 `json:"money" orm:"money" description:"提现金额"`
|
||||
Fee float64 `json:"fee" orm:"fee" description:"手续费"`
|
||||
LastMoney float64 `json:"lastMoney" orm:"last_money" description:"最终到账金额"`
|
||||
Ip string `json:"ip" orm:"ip" description:"申请人IP"`
|
||||
Status int64 `json:"status" orm:"status" description:"状态码"`
|
||||
Msg string `json:"msg" orm:"msg" description:"处理结果"`
|
||||
HandleAt *gtime.Time `json:"handleAt" orm:"handle_at" description:"处理时间"`
|
||||
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"申请时间"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user