You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
504 B
15 lines
504 B
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
//抽奖红包钱包
|
|
type LotteryDrawEnvelopeWallet struct {
|
|
Id int `json:"id" xorm:"not null autoincr pk INT(11)"`
|
|
CustomerId int `json:"customer_id" description:"客户id"`
|
|
Balance float64 `json:"balance" description:"余额"`
|
|
IsDelete bool `json:"is_delete" xorm:"default(0)"`
|
|
CreatedAt time.Time `json:"-" xorm:"created" description:"创建时间"`
|
|
UpdatedAt time.Time `json:"-" xorm:"updated" description:"更新时间"`
|
|
}
|