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.
|
package model |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
// Factor def. |
|
type Factor struct { |
|
ID int64 |
|
NickName string //风险因子名字 |
|
ServiceID int64 |
|
EventID int64 |
|
GroupID int64 |
|
RiskLevel int8 //风险等级:1-9 |
|
FactorVal float64 //风险得分 |
|
CTime time.Time |
|
MTime time.Time |
|
}
|
|
|