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

guide_order.go 1.5 KiB

1 year ago
10 months ago
1 year ago
12345678910111213141516171819202122232425
  1. package model
  2. type GuideOrder struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. Oid int64 `json:"oid" xorm:"default 0 BIGINT(20)"`
  5. Uid int `json:"uid" xorm:"default 0 INT(11)"`
  6. ExtendUid int `json:"extend_uid" xorm:"default 0 INT(11)"`
  7. StationUid int `json:"station_uid" xorm:"default 0 INT(11)"`
  8. PvdOid string `json:"pvd_oid" xorm:"VARCHAR(100)"`
  9. PvdParentOid string `json:"pvd_parent_oid" xorm:"VARCHAR(100)"`
  10. Status string `json:"status" xorm:"VARCHAR(100)"`
  11. CreateTime int `json:"create_time" xorm:"default 0 INT(11)"`
  12. UpdateTime int `json:"update_time" xorm:"default 0 INT(11)"`
  13. SettleTime int `json:"settle_time" xorm:"default 0 INT(11)"`
  14. PlatformSettleTime int `json:"platform_settle_time" xorm:"default 0 INT(11)"`
  15. Commission string `json:"commission" xorm:"default 0.0000 DECIMAL(20,4)"`
  16. RealCommission string `json:"real_commission" xorm:"default 0.0000 DECIMAL(20,4)"`
  17. Title string `json:"title" xorm:"VARCHAR(255)"`
  18. Gid string `json:"gid" xorm:"VARCHAR(255)"`
  19. Payment string `json:"payment" xorm:"default 0.00 DECIMAL(20,2)"`
  20. Pvd string `json:"pvd" xorm:"VARCHAR(255)"`
  21. Img string `json:"img" xorm:"VARCHAR(255)"`
  22. IsShare int `json:"is_share" xorm:"default 0 INT(1)"`
  23. Ext string `json:"ext" xorm:"VARCHAR(3000)"`
  24. }