package models import ( "time" ) //抽奖活动钱包历史 type LotteryDrawWalletHistory struct { Id int64 `json:"id"` CustomerId int64 `json:"customer_id" description:"客户id"` Money float64 `json:"money" description:"金额[分正负]"` Mark string `json:"mark" description:"备注"` IsDelete bool `json:"is_delete" xorm:"default(0)"` CreatedAt time.Time `json:"-" xorm:"created" description:"创建时间"` UpdatedAt time.Time `json:"-" xorm:"updated" description:"更新时间"` }