package models import "time" //摇红包钱包 type ShakeRedEnvelopeWallet 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)" description:"是否删除"` CreatedAt time.Time `json:"created_at" xorm:"created" description:"创建时间"` UpdatedAt time.Time `json:"updated_at" xorm:"updated" description:"更新时间"` }