factor_group.go 148 B

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