question.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. package model
  2. import (
  3. "database/sql"
  4. "go-common/library/time"
  5. )
  6. // 常量
  7. const (
  8. DeledStatus = 1 // 已删除
  9. PAGESIZE = 20 // 每页条数
  10. STARTINDEX = 20 // 开始页码
  11. MULTIPLECHOICE = 2 //多选
  12. )
  13. // Question 题目返回数据
  14. type Question struct {
  15. QsID int64 `json:"qid"`
  16. QsType int8 `json:"question_type"`
  17. AnswerType int8 `json:"answer_type"`
  18. QsName string `json:"question_name"`
  19. QsDif int8 `json:"difficulty"`
  20. QsBId int64 `json:"qb_id"`
  21. IsDeleted uint8 `json:"is_deleted"`
  22. //Ctime string `json:"ctime"`
  23. //Mtime string `json:"mtime"`
  24. }
  25. // GetQuestionItem 获取题目接口返回数据
  26. type GetQuestionItem struct {
  27. *Question
  28. Answers []*Answer `json:"answers"`
  29. QuestBkPic *QuestBkPic `json:"qspic"`
  30. AllCnt int64 `json:"total"`
  31. AnTime int64 `json:"answer_cnt"`
  32. }
  33. // QuestBkPic 坐标
  34. type QuestBkPic struct {
  35. X int `json:"x"`
  36. Y int `json:"y"`
  37. Src string `json:"src"`
  38. }
  39. // QuestionAll 题目所有
  40. type QuestionAll struct {
  41. Question
  42. AnswersList []*Answer `json:"answers"`
  43. }
  44. //QuestionBank stuct
  45. type QuestionBank struct {
  46. //ID int64 `json:"id"`
  47. QsBId int64 `json:"qb_id"`
  48. QBName string `json:"qb_name"`
  49. CdTime int64 `json:"cd_time"`
  50. MaxRetryTime int64 `json:"max_retry_time"`
  51. IsDeleted int8 `json:"is_deleted"`
  52. }
  53. // QusBankSt 返回
  54. type QusBankSt struct {
  55. QuestionBank
  56. ID int64 `json:"id"`
  57. TotalCnt int64 `json:"total_cnt"`
  58. EasyCnt int64 `json:"easy_cnt"`
  59. NormalCnt int64 `json:"normal_cnt"`
  60. HardCnt int64 `json:"hard_cnt"`
  61. }
  62. // QusBankCnt 统计类
  63. type QusBankCnt struct {
  64. ID int64 `json:"id"`
  65. TotalCnt int64 `json:"total_cnt"`
  66. EasyCnt sql.NullInt64 `json:"easy_cnt"`
  67. NormalCnt sql.NullInt64 `json:"normal_cnt"`
  68. HardCnt sql.NullInt64 `json:"hard_cnt"`
  69. }
  70. //Answer stuct
  71. type Answer struct {
  72. QsID int64 `json:"qid"`
  73. AnswerContent string `json:"answer_content"`
  74. IsCorrect int8 `json:"is_correct"`
  75. AnswerID int64 `json:"answer_id"`
  76. }
  77. // AnswerAdd add
  78. type AnswerAdd struct {
  79. Answer
  80. }
  81. // AddReturn return
  82. type AddReturn struct {
  83. ID int64 `json:"id"`
  84. }
  85. // Page page
  86. type Page struct {
  87. Total int64 `json:"total"`
  88. PageNo int `json:"page_no" default:"1"`
  89. PageSize int `json:"page_size" default:"20"`
  90. }
  91. // QuestionBankBind 绑定题库字段
  92. type QuestionBankBind struct {
  93. ID int64 `json:"id"`
  94. TargetItem string `json:"target_item" validate:"required"`
  95. TargetItemType int8 `json:"target_item_type" validate:"required"`
  96. QsBId int64 `json:"bank_id" validate:"required"`
  97. UseInTime int64 `json:"use_in_time" validate:"required"`
  98. Source int8 `json:"source" validate:"required"`
  99. IsDeleted int8 `json:"is_deleted"`
  100. Ctime time.Time `json:"ctime"`
  101. Mtime time.Time `json:"mtime"`
  102. QuestionBank *QuestionBank `json:"question_bank,omitempty"`
  103. }
  104. // RespList 返回
  105. type RespList struct {
  106. Page
  107. Items interface{} `json:"items"`
  108. }
  109. // AddLog log
  110. type AddLog struct {
  111. UID string
  112. QsID int64
  113. Platform int8
  114. Source int8
  115. Ids string
  116. IsCorrect int8
  117. }