user_event_history.go 353 B

12345678910111213141516171819
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // UserEventHistory history of user event def.
  6. type UserEventHistory struct {
  7. ID int64
  8. Mid int64
  9. EventID int64
  10. Score int8
  11. BaseScore int8
  12. EventScore int8
  13. Remark string
  14. Reason string // 事件原因 == eventmsg.Effect
  15. FactorVal float64
  16. CTime time.Time
  17. }