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

33 lines
2.1 KiB

  1. package model
  2. import (
  3. "time"
  4. )
  5. type PlayletSaleOrder struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. Uid string `json:"uid" xorm:"default '' comment('用户id') VARCHAR(255)"`
  8. SubUid int `json:"sub_uid" xorm:"default 0 comment('') INT(11)"`
  9. Data string `json:"data" xorm:"comment('第三方返回数据') VARCHAR(5000)"`
  10. Oid string `json:"oid" xorm:"comment('订单号') VARCHAR(255)"`
  11. Amount string `json:"amount" xorm:"default 0.00 comment('金额') DECIMAL(20,2)"`
  12. Commission string `json:"commission" xorm:"default 0.00 comment('佣金') DECIMAL(20,2)"`
  13. PlatformFee string `json:"platform_fee" xorm:"default 0.00 comment('佣金') DECIMAL(20,2)"`
  14. Fee string `json:"fee" xorm:"default 0.00 comment('佣金') DECIMAL(20,2)"`
  15. Status string `json:"status" xorm:"comment('状态') VARCHAR(255)"`
  16. CreateTime time.Time `json:"create_time" xorm:"comment('下单时间') DATETIME"`
  17. RefundTime time.Time `json:"refund_time" xorm:"comment('退款时间') DATETIME"`
  18. UpdateTime time.Time `json:"update_time" xorm:"comment('广告统计更新时间') DATETIME"`
  19. PlatformSettleTime time.Time `json:"platform_settle_time" xorm:"comment('广告统计更新时间') DATETIME"`
  20. Title string `json:"title" xorm:"comment('标题') VARCHAR(255)"`
  21. VideoType string `json:"video_type" xorm:"comment('视频类型') VARCHAR(255)"`
  22. PlatformType string `json:"platform_type" xorm:"comment('平台类型') VARCHAR(255)"`
  23. GoodsType string `json:"goods_type" xorm:"comment('商品数据') VARCHAR(255)"`
  24. SettleTime int `json:"settle_time" xorm:"default 0 INT(11)"`
  25. OrdType string `json:"ord_type" xorm:"VARCHAR(255)"`
  26. TimesNum string `json:"times_num" xorm:"VARCHAR(255)"`
  27. PeopleNum string `json:"people_num" xorm:"VARCHAR(255)"`
  28. CustomOid string `json:"custom_oid" xorm:"VARCHAR(255)"`
  29. ExtendUid string `json:"extend_uid" xorm:"VARCHAR(255)"`
  30. }