exam_record.go 982 B

1234567891011121314151617181920212223242526272829
  1. package entity
  2. import (
  3. "time"
  4. )
  5. var (
  6. NOT_TESTED = 0
  7. TESTING = 1
  8. TESTED = 2
  9. TIMEOUT = 3
  10. )
  11. // 考试记录管理
  12. type ExamRecord struct {
  13. Id int `json:"id,omitempty" db:"id,omitempty"`
  14. CreateAt time.Time `json:"create_at,omitempty" db:"create_at,omitempty"`
  15. UpdateAt time.Time `json:"update_at,omitempty" db:"update_at,omitempty"`
  16. DeleteAt *time.Time `json:"-" db:"delete_at,omitempty"`
  17. Score *int `json:"score,omitempty" db:"score,omitempty"`
  18. UserId int `json:"user_id,omitempty" db:"user_id,omitempty"`
  19. ExamId int `json:"exam_id,omitempty" db:"exam_id,omitempty"`
  20. Answer *string `json:"answer,omitempty" db:"answer,omitempty"`
  21. // 记录考试状态,防止用户恶意修改考试记录
  22. Token string `json:"token,omitempty" db:"token,omitempty"`
  23. Ip string `json:"ip,omitempty" db:"ip,omitempty"`
  24. // 0未考试 1已考试 2超时未交卷
  25. Status *int `json:"status,omitempty" db:"status,omitempty"`
  26. }