附近小店
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.
 
 
 

38 lines
2.4 KiB

  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. CreateAt time.Time `json:"create_at" xorm:"DATETIME"`
  16. UpdateAt time.Time `json:"update_at" xorm:"DATETIME"`
  17. BuyPhone string `json:"buy_phone" xorm:"VARCHAR(255)"`
  18. Phone string `json:"phone" xorm:"VARCHAR(255)"`
  19. BuyName string `json:"buy_name" xorm:"VARCHAR(255)"`
  20. State int `json:"state" xorm:"default 0 comment('0待付款 1已支付 2已提货') INT(11)"`
  21. PayAt time.Time `json:"pay_at" xorm:"comment('付款时间') DATETIME"`
  22. ConfirmAt time.Time `json:"confirm_at" xorm:"comment('提货时间') DATETIME"`
  23. Oid int64 `json:"oid" xorm:"default 0 comment('主单号') BIGINT(20)"`
  24. Code string `json:"code" xorm:"comment('提货码') VARCHAR(255)"`
  25. Type int `json:"type" xorm:"default 0 comment('0自提 1外卖') INT(1)"`
  26. PayMethod int `json:"pay_method" xorm:"default 0 comment('1余额 2支付宝 3微信') INT(11)"`
  27. PayId string `json:"pay_id" xorm:"comment('第三方的支付id') VARCHAR(255)"`
  28. Amount string `json:"amount" xorm:"default 0.00 comment('总金额') DECIMAL(20,2)"`
  29. Memo string `json:"memo" xorm:"comment('备注') VARCHAR(255)"`
  30. TakeTime time.Time `json:"take_time" xorm:"comment('预计提货时间') DATETIME"`
  31. MealNum int `json:"meal_num" xorm:"default 0 comment('餐具数量') INT(11)"`
  32. Coupon string `json:"coupon" xorm:"default 0.00 DECIMAL(10,2)"`
  33. Timer string `json:"timer" xorm:"comment('预计提货时间') VARCHAR(255)"`
  34. IsNow int `json:"is_now" xorm:"default 0 comment('是否立即提货') INT(1)"`
  35. }