factor_group.go 165 B

123456789101112
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // FactorGroup is.
  6. type FactorGroup struct {
  7. ID int64
  8. Name string //风险因子组名
  9. CTime time.Time
  10. }