help.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package model
  2. import "go-common/library/time"
  3. // HelpList help list
  4. type HelpList struct {
  5. Last bool `json:"last"`
  6. ParentTypeID string `json:"parentTypeId"`
  7. QuestionTypeDesc string `json:"questionTypeDesc"`
  8. QuestionTypeID string `json:"questionTypeId"`
  9. QuestionTypeName string `json:"questionTypeName"`
  10. QuestionTypeStatus int `json:"questionTypeStatus"`
  11. SortNo int `json:"sortNo"`
  12. TypeLevel int `json:"typeLevel"`
  13. }
  14. // HelpDeatil help deatil and search
  15. type HelpDeatil struct {
  16. AllTypeName string `json:"allTypeName"`
  17. AnswerDesc string `json:"answerDesc"`
  18. AnswerFlag int `json:"answerFlag"`
  19. AnswerID string `json:"answerId"`
  20. AnswerImg string `json:"answerImg"`
  21. AnswerTxt string `json:"answerTxt"`
  22. AuditStatus int `json:"auditStatus"`
  23. CompanyID string `json:"companyId"`
  24. CreateID string `json:"createId"`
  25. CreateTime time.Time `json:"createTime"`
  26. DocID string `json:"docId"`
  27. LinkFlag int `json:"linkFlag"`
  28. MatchFlag int `json:"matchFlag"`
  29. QuestionID string `json:"questionId"`
  30. QuestionTitle string `json:"questionTitle"`
  31. QuestionTypeID string `json:"questionTypeId"`
  32. QuestionTypeName string `json:"questionTypeName"`
  33. UpdateID string `json:"updateId"`
  34. UpdateTime time.Time `json:"updateTime"`
  35. UsedFlag int `json:"usedFlag"`
  36. }