mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -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
|
||
|
|
}
|