面包店
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.
 
 
 
 
 

12 lines
673 B

  1. package model
  2. type DealOrderUser struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Type string `json:"type" xorm:"default '' comment('类型 activity_order活动订单 oil_order加油订单') index VARCHAR(100)"`
  5. Uid int `json:"uid" xorm:"default 0 comment('用户id') index INT(11)"`
  6. Time int `json:"time" xorm:"default 0 comment('写入时间') index INT(11)"`
  7. EndTime int `json:"end_time" xorm:"default 0 comment('结束时间') index INT(11)"`
  8. RelationId int64 `json:"relation_id" xorm:"default 0 comment('渠道id') index BIGINT(12)"`
  9. Data string `json:"data" xorm:"comment('拓展用') TEXT"`
  10. }