appeal.go 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // Appeal state
  6. const (
  7. // StateCreate 用户刚创建申诉
  8. StateCreate = 1
  9. // StateReply 管理员回复,并且用户已读
  10. StateReply = 2
  11. // StateAdminClose 管理员关闭申诉
  12. StateAdminClose = 3
  13. // StateUserFinished 用户已解决申诉(评分)
  14. StateUserFinished = 4
  15. // StateTimeoutClose 超时关闭申诉
  16. StateTimeoutClose = 5
  17. // StateNoRead 管理员回复,用户未读
  18. StateNoRead = 6
  19. // StateUserClosed 用户直接关闭申诉
  20. StateUserClosed = 7
  21. // StateAdminFinished 管理员已通过申诉
  22. StateAdminFinished = 8
  23. // EventStateAdminReply 管理员回复
  24. EventStateAdminReply = 1
  25. // EventStateAdminNote 管理员回复并记录
  26. EventStateAdminNote = 2
  27. // EventStateUserReply 用户回复
  28. EventStateUserReply = 3
  29. // EventStateSystem 系统回复
  30. EventStateSystem = 4
  31. // appeal business
  32. Business = 5
  33. )
  34. // Appeal info.
  35. type Appeal struct {
  36. ID int64 `json:"id"`
  37. Oid int64 `json:"oid"`
  38. Cid int64 `json:"cid"`
  39. Mid int64 `json:"mid"`
  40. Aid int64 `json:"aid"`
  41. Tid int8 `json:"tid"`
  42. Title string `json:"title"`
  43. State int8 `json:"state"`
  44. Visit int8 `json:"visit"`
  45. QQ string `json:"qq"`
  46. Email string `json:"email"`
  47. Phone string `json:"phone"`
  48. Pics string `json:"pics"`
  49. Content string `json:"content"`
  50. Description string `json:"description"`
  51. Star int8 `json:"star"`
  52. CTime time.Time `json:"ctime"`
  53. MTime time.Time `json:"mtime"`
  54. }
  55. // IsOpen appeal open state.
  56. func IsOpen(state int8) bool {
  57. return state == StateCreate || state == StateReply || state == StateNoRead
  58. }
  59. // OpenedStates open get appeal
  60. func OpenedStates() (states []int64) {
  61. return []int64{StateCreate, StateReply, StateNoRead}
  62. }
  63. // ClosedStates get appeal
  64. func ClosedStates() (states []int64) {
  65. return []int64{StateAdminClose, StateUserFinished, StateTimeoutClose, StateUserClosed, StateAdminFinished}
  66. }