智盟项目
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

33 行
2.1 KiB

  1. package model
  2. type HcCardorder struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Orderid string `json:"orderId" xorm:"default '' VARCHAR(255)"`
  5. CreateTime int `json:"create_time" xorm:"default 0 INT(11)"`
  6. Uid int `json:"uid" xorm:"default 0 comment('站长id') INT(11)"`
  7. Zuid int `json:"zuid" xorm:"default 0 comment('站长平台的用户') INT(11)"`
  8. Statut string `json:"statut" xorm:"default '' comment('状态') VARCHAR(100)"`
  9. Account string `json:"account" xorm:"default '' comment('充值账号') VARCHAR(100)"`
  10. BuyNum int `json:"buy_num" xorm:"default 0 comment('购买数量') INT(11)"`
  11. GId int `json:"g_id" xorm:"default 0 comment('商品id') INT(11)"`
  12. SpecId int `json:"spec_id" xorm:"default 0 comment('套餐id') INT(11)"`
  13. Type string `json:"type" xorm:"default '' comment('类型') VARCHAR(100)"`
  14. Payment float64 `json:"payment" xorm:"default 0.00 DOUBLE(11,2)"`
  15. Msg string `json:"msg" xorm:"default '' VARCHAR(100)"`
  16. PayTime int `json:"pay_time" xorm:"default 0 INT(11)"`
  17. LId int `json:"l_id" xorm:"default 0 INT(11)"`
  18. SysOrderid string `json:"sys_orderId" xorm:"default '' VARCHAR(255)"`
  19. Status string `json:"status" xorm:"default '' VARCHAR(255)"`
  20. IsToreturn int `json:"is_toreturn" xorm:"default 0 INT(11)"`
  21. CardMsg string `json:"card_msg" xorm:"TEXT"`
  22. IsFh int `json:"is_fh" xorm:"default 0 INT(11)"`
  23. Oid string `json:"oid" xorm:"default '' VARCHAR(255)"`
  24. RechargeStatus int `json:"recharge_status" xorm:"default 0 comment('0无 1充值中 2充值成功 3充值失败') INT(11)"`
  25. NextUpdateTime int `json:"next_update_time" xorm:"default 0 INT(11)"`
  26. UpdateTime int `json:"update_time" xorm:"default 0 INT(11)"`
  27. CreateMsg string `json:"create_msg" xorm:"TEXT"`
  28. ShowMsg string `json:"show_msg" xorm:"TEXT"`
  29. Amount float64 `json:"amount" xorm:"default 0.00 DOUBLE(11,2)"`
  30. Idcard string `json:"idcard" xorm:"default '' VARCHAR(255)"`
  31. }