sobot.go 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package sobot
  2. const (
  3. // TicketFrom .
  4. TicketFrom = int8(12)
  5. // EcodeOK .
  6. EcodeOK = "000000"
  7. // ReplyTypePublic 评论可见状态
  8. ReplyTypePublic = int8(0)
  9. // ReplyTypeCSOnly .
  10. ReplyTypeCSOnly = int8(1)
  11. // CustomerSourcePC 客户来源
  12. CustomerSourcePC = int8(0)
  13. // CustomerSourceWX .
  14. CustomerSourceWX = int8(1)
  15. // CustomerSourceAPP .
  16. CustomerSourceAPP = int8(2)
  17. // CustomerSourceWB .
  18. CustomerSourceWB = int8(3)
  19. // CustomerSourceWAP .
  20. CustomerSourceWAP = int8(4)
  21. // TicketLevelLow 工单等级 .
  22. TicketLevelLow = int8(0)
  23. // TicketLevelMedium .
  24. TicketLevelMedium = int8(1)
  25. // TicketLevelHigh .
  26. TicketLevelHigh = int8(2)
  27. // TicketLevelurgency .
  28. TicketLevelurgency = int8(3)
  29. // TicketStatusPending 工单状态
  30. TicketStatusPending = int8(0)
  31. // TicketStatusHandling .
  32. TicketStatusHandling = int8(1)
  33. // TicketStatusReplying .
  34. TicketStatusReplying = int8(2)
  35. // TicketStatusSolved .
  36. TicketStatusSolved = int8(3)
  37. // TicketStatusClosed .
  38. TicketStatusClosed = int8(99)
  39. // TicketStatusDeleted .
  40. TicketStatusDeleted = int8(98)
  41. )
  42. // Ticket struct
  43. type Ticket struct {
  44. TicketID string `json:"ticket_id"`
  45. Content string `json:"ticket_content"`
  46. Level int8 `json:"ticket_level"`
  47. State int8 `json:"ticket_status"`
  48. Title string `json:"ticket_title"`
  49. FileStr string `json:"file_str"`
  50. CTime int64 `json:"ctime"`
  51. }
  52. // Reply struct
  53. type Reply struct {
  54. Face string `json:"face_img"`
  55. FileStr string `json:"file_str"`
  56. Content string `json:"reply_content"`
  57. ReplyType int8 `json:"reply_type"`
  58. ShowName string `json:"show_name"`
  59. StartType int8 `json:"start_type"`
  60. CTime int64 `json:"reply_time"`
  61. }
  62. // ReplyParam reply param
  63. type ReplyParam struct {
  64. TicketID int32 `form:"ticket_id" validate:"required"`
  65. ReplyContent string `form:"reply_content" validate:"required"`
  66. CustomerEmail string `form:"customer_email" validate:"required"`
  67. StartType int8 `form:"start_type"`
  68. ReplyType int8 `form:"reply_type"`
  69. }
  70. // TicketParam ticket param
  71. type TicketParam struct {
  72. CustomerName string `form:"customer_name"`
  73. CustomerQQ string `form:"customer_qq"`
  74. CustomerNick string `form:"customer_nick"`
  75. CustomerEmail string `form:"customer_email" validate:"required"`
  76. CustomerSource int8 `form:"customer_source"`
  77. CustomerPhone string `form:"customer_phone"`
  78. TicketID int32 `form:"ticket_id" validate:"required"`
  79. TicketTitle string `form:"ticket_title"`
  80. TicketContent string `form:"ticket_content"`
  81. TicketLevel int8 `form:"ticket_level"`
  82. TicketStatus int8 `form:"ticket_status"`
  83. TicketFrom int8 `form:"ticket_from"`
  84. StartType int8 `form:"start_type"`
  85. FileStr string `form:"file_str"`
  86. }