mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
13 lines
148 B
Go
13 lines
148 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// FactorGroup etc.
|
|
type FactorGroup struct {
|
|
ID int64
|
|
Name string //风险因子组名
|
|
CTime time.Time
|
|
}
|