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

life_order.go 1.6 KiB

5 months ago
123456789101112131415161718192021222324252627
  1. package model
  2. type LifeOrder 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.00 DECIMAL(20,2)"`
  16. RealCommission string `json:"real_commission" xorm:"default 0.00 DECIMAL(20,2)"`
  17. Title string `json:"title" xorm:"VARCHAR(255)"`
  18. Payment string `json:"payment" xorm:"default 0.00 DECIMAL(20,2)"`
  19. Pvd string `json:"pvd" xorm:"VARCHAR(255)"`
  20. Img string `json:"img" xorm:"VARCHAR(255)"`
  21. IsShare int `json:"is_share" xorm:"default 0 INT(1)"`
  22. Ext string `json:"ext" xorm:"VARCHAR(3000)"`
  23. Gid string `json:"gid" xorm:"VARCHAR(255)"`
  24. TeamType string `json:"team_type" xorm:"VARCHAR(255)"`
  25. TaskType string `json:"task_type" xorm:"VARCHAR(255)"`
  26. }