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

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