智盟项目
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.

hw_order.go 2.5 KiB

1 年之前
123456789101112131415161718192021222324252627282930
  1. package model
  2. type HwOrder struct {
  3. Id int `json:"id" xorm:"not null pk autoincr index INT(11)"`
  4. Oid string `json:"oid" xorm:"default '' comment('订单编号') VARCHAR(255)"`
  5. Info string `json:"info" xorm:"default '' comment('商品标题') VARCHAR(100)"`
  6. Commission float64 `json:"commission" xorm:"default 0.00 comment('佣金') DOUBLE(30,2)"`
  7. Type string `json:"type" xorm:"default '' comment('平台') VARCHAR(100)"`
  8. TakePhoneNumber string `json:"take_phone_number" xorm:"default '' comment('手机号') VARCHAR(100)"`
  9. RestaurantAddress string `json:"restaurant_address" xorm:"default '' comment('地址') VARCHAR(100)"`
  10. Uid int `json:"uid" xorm:"default 0 comment('站长id') index INT(11)"`
  11. Payment float64 `json:"payment" xorm:"default 0.00 comment('付款金额') DOUBLE(11,2)"`
  12. Status string `json:"status" xorm:"default '' comment('状态描述') VARCHAR(10)"`
  13. CreateTime int `json:"create_time" xorm:"default 0 comment('订单创建时间') INT(11)"`
  14. Fanli int `json:"fanli" xorm:"default 0 comment('是否已返利') INT(1)"`
  15. Data string `json:"data" xorm:"comment('附加内容') LONGTEXT"`
  16. TakeMealCode string `json:"take_meal_code" xorm:"comment('取餐口令') LONGTEXT"`
  17. SettleTime int `json:"settle_time" xorm:"default 0 comment('返利时间') INT(11)"`
  18. UpdateTime int `json:"update_time" xorm:"default 0 comment('订单最后更新时间') INT(11)"`
  19. Zuid string `json:"zuid" xorm:"default '0' comment('站长平台的用户id') VARCHAR(100)"`
  20. Extra string `json:"extra" xorm:"default '' comment('自定义参数') VARCHAR(100)"`
  21. Code string `json:"code" xorm:"default '' comment('取餐口令') VARCHAR(100)"`
  22. UserId string `json:"user_id" xorm:"default '' comment('自定义参数') VARCHAR(100)"`
  23. LmJsTime int `json:"lm_js_time" xorm:"default 0 comment('结算时间') INT(11)"`
  24. PlatformTypes string `json:"platform_types" xorm:"default '' VARCHAR(50)"`
  25. IsShare int `json:"is_share" xorm:"default 0 INT(11)"`
  26. RefundTime int `json:"refund_time" xorm:"default 0 comment('订单退款成功时间') INT(11)"`
  27. OutMealTime int `json:"out_meal_time" xorm:"default 0 comment('订单出餐成功时间') INT(11)"`
  28. ExtendUid string `json:"extend_uid" xorm:"VARCHAR(255)"`
  29. }