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.
28 lines
787 B
28 lines
787 B
package upcrmmodel |
|
|
|
import "go-common/library/time" |
|
|
|
//UpBaseInfo db struct |
|
type UpBaseInfo struct { |
|
ID int32 |
|
Mid int32 |
|
Name string |
|
Sex int8 |
|
JoinTime time.Time |
|
FirstUpTime time.Time |
|
Level int16 |
|
FansCount int |
|
AccountState int |
|
Activity int |
|
ArticleCount30day int `gorm:"article_count_30day"` |
|
ArticleCountAccumulate int |
|
VerifyType int8 |
|
CTime time.Time `gorm:"ctime"` |
|
MTime time.Time `gorm:"mtim"` |
|
BusinessType int8 |
|
CreditScore int |
|
PrScore int |
|
QualityScore int |
|
ActiveTid int16 |
|
Attr int |
|
}
|
|
|