9 lines
154 B
Go
9 lines
154 B
Go
package model
|
|
|
|
type Statistic struct {
|
|
Model
|
|
|
|
Count uint32 `json:"count"` // 计数
|
|
Type uint32 `json:"type" gorm:"index"` // 类型:1-
|
|
}
|