互动
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.

13 lines
601 B

package models
//竞拍成交
//type AuctionDeal struct {
// Id int64 `json:"id"`
// RuleId int64 `json:"rule_id" description:"规则id"`
// PlayerCode int `json:"player_code" description:"竞拍参与者号码"`
// DealMoney float64 `json:"deal_money" description:"成交的金额"`
// IsPay bool `json:"is_pay" description:"是否支付"`
// IsDelete bool `json:"is_delete" xorm:"default(0)"`
// CreatedAt time.Time `json:"-" xorm:"created" description:"创建时间"`
// UpdatedAt time.Time `json:"-" xorm:"updated" description:"更新时间"`
//}