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

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