bilibili-backup/app/service/main/spy/model/factor.go
2019-04-22 02:59:20 +00:00

19 lines
314 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
}