mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
13 lines
165 B
Go
13 lines
165 B
Go
package model
|
|
|
|
import (
|
|
"go-common/library/time"
|
|
)
|
|
|
|
// FactorGroup is.
|
|
type FactorGroup struct {
|
|
ID int64
|
|
Name string //风险因子组名
|
|
CTime time.Time
|
|
}
|