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

community_team_order.go 3.2 KiB

1 个月前
1 个月前
1 个月前
12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package model
  2. import (
  3. "time"
  4. )
  5. type CommunityTeamOrder struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. Uid int `json:"uid" xorm:"default 0 INT(11)"`
  8. StoreType int `json:"store_type" xorm:"default 0 comment('0官方自营店 1加盟店 2连锁店') INT(11)"`
  9. StoreUid int `json:"store_uid" xorm:"default 0 comment('门店用户id') INT(11)"`
  10. ParentUid int `json:"parent_uid" xorm:"default 0 comment('上级代理') INT(11)"`
  11. Num int `json:"num" xorm:"default 0 comment('') INT(11)"`
  12. CouponId int `json:"coupon_id" xorm:"default 0 comment('') INT(11)"`
  13. Address string `json:"address" xorm:"comment('详细地址') VARCHAR(255)"`
  14. Commission string `json:"commission" xorm:"default 0.00 comment('分佣(元)') DECIMAL(20,2)"`
  15. AgentCommission string `json:"agent_commission" xorm:"default 0.00 comment('分佣(元)') DECIMAL(20,2)"`
  16. PlatformCommission string `json:"platform_commission" xorm:"default 0.00 comment('分佣(元)') DECIMAL(20,2)"`
  17. CreateAt time.Time `json:"create_at" xorm:"DATETIME"`
  18. UpdateAt time.Time `json:"update_at" xorm:"DATETIME"`
  19. CancelAt time.Time `json:"cancel_at" xorm:"DATETIME"`
  20. BuyPhone string `json:"buy_phone" xorm:"VARCHAR(255)"`
  21. Phone string `json:"phone" xorm:"VARCHAR(255)"`
  22. BuyName string `json:"buy_name" xorm:"VARCHAR(255)"`
  23. State int `json:"state" xorm:"default 0 comment('0待付款 1已支付 2已提货') INT(11)"`
  24. PayAt time.Time `json:"pay_at" xorm:"comment('付款时间') DATETIME"`
  25. ConfirmAt time.Time `json:"confirm_at" xorm:"comment('提货时间') DATETIME"`
  26. Oid int64 `json:"oid" xorm:"default 0 comment('主单号') BIGINT(20)"`
  27. Code string `json:"code" xorm:"comment('提货码') VARCHAR(255)"`
  28. Type int `json:"type" xorm:"default 0 comment('0自提 1外卖') INT(1)"`
  29. PayMethod int `json:"pay_method" xorm:"default 0 comment('1余额 2支付宝 3微信') INT(11)"`
  30. PayId string `json:"pay_id" xorm:"comment('第三方的支付id') VARCHAR(255)"`
  31. Amount string `json:"amount" xorm:"default 0.00 comment('总金额') DECIMAL(20,2)"`
  32. Memo string `json:"memo" xorm:"comment('备注') VARCHAR(255)"`
  33. TakeTime time.Time `json:"take_time" xorm:"comment('预计提货时间') DATETIME"`
  34. MealNum int `json:"meal_num" xorm:"default 0 comment('餐具数量') INT(11)"`
  35. Coupon string `json:"coupon" xorm:"default 0.00 DECIMAL(10,2)"`
  36. Timer string `json:"timer" xorm:"comment('预计提货时间') VARCHAR(255)"`
  37. IsNow int `json:"is_now" xorm:"default 0 comment('是否立即提货') INT(1)"`
  38. StoreSettleAt int `json:"store_settle_at" xorm:"default 0 comment('') INT(11)"`
  39. SettleAt int `json:"settle_at" xorm:"default 0 comment('') INT(11)"`
  40. CommissionAt int `json:"commission_at" xorm:"default 0 comment('') INT(11)"`
  41. }