up_base_info.go 1001 B

1234567891011121314151617181920212223242526272829303132
  1. package upcrmmodel
  2. import "go-common/library/time"
  3. import xtime "time"
  4. //UpBaseInfo struct
  5. type UpBaseInfo struct {
  6. ID uint32 `gorm:"column:id"`
  7. Mid int64
  8. Name string
  9. Sex int8
  10. JoinTime time.Time
  11. FirstUpTime time.Time
  12. Level int16
  13. FansCount int
  14. AccountState int8
  15. Activity int
  16. ArticleCount30day int `gorm:"column:article_count_30day"`
  17. ArticleCountAccumulate int
  18. Birthday xtime.Time
  19. ActiveCity string // 市,存的是城市的名字
  20. ActiveProvince string // 省,省的名字
  21. VerifyType int8
  22. BusinessType int8
  23. CreditScore int
  24. PrScore int
  25. QualityScore int
  26. ActiveTid int64
  27. Attr int
  28. CTime time.Time `gorm:"column:ctime"`
  29. MTime time.Time `gorm:"column:mtime"`
  30. }