workflow.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package model
  2. import (
  3. "encoding/json"
  4. "net/url"
  5. "strconv"
  6. )
  7. const (
  8. _subtitleReportTagReasonID = 5
  9. )
  10. // WorkFlowTagListResp .
  11. type WorkFlowTagListResp struct {
  12. Code int `json:"code"`
  13. Message string `json:"message"`
  14. Data []*WorkFlowTag `json:"data"`
  15. }
  16. // WorkFlowTag .
  17. type WorkFlowTag struct {
  18. Bid int64 `json:"bid"`
  19. TagID int64 `json:"tag_id"`
  20. Rid int64 `json:"rid"`
  21. Name string `json:"name"`
  22. }
  23. // CommonResponse .
  24. type CommonResponse struct {
  25. Code int `json:"code"`
  26. Message string `json:"message"`
  27. }
  28. // WorkFlowAppealAddReq .
  29. type WorkFlowAppealAddReq struct {
  30. Business int64 // 14
  31. LanCode int64 // 语言code
  32. Rid int64 // workflow rid
  33. SubtitleID int64 // 字幕id
  34. Score int32 // 举报人得分
  35. Tid int64 // workflow tag id
  36. Oid int64 // 视频cid
  37. Aid int64 // 稿件id
  38. Mid int64 // 举报人mid
  39. BusinessTypeID int32 // 分区id
  40. BusinessTitle string // 举报内容
  41. BusinessMid int64 // 被举报人mid
  42. Description string // 投诉的具体描述
  43. Extra *WorkFlowAppealAddExtra // 附加信息
  44. }
  45. // WorkFlowAppealAddExtra .
  46. type WorkFlowAppealAddExtra struct {
  47. SubtitleStatus int64 `json:"subtitle_status"`
  48. SubtitleURL string `json:"subtitle_url"`
  49. ArchiveName string `json:"arcvhive_name"`
  50. }
  51. // Params .
  52. func (w *WorkFlowAppealAddReq) Params() (params url.Values) {
  53. var (
  54. err error
  55. bs []byte
  56. )
  57. params = url.Values{}
  58. params.Set("business", strconv.FormatInt(w.Business, 10))
  59. params.Set("fid", strconv.FormatInt(w.LanCode, 10))
  60. params.Set("rid", strconv.FormatInt(w.Rid, 10))
  61. params.Set("eid", strconv.FormatInt(w.SubtitleID, 10))
  62. params.Set("score", strconv.Itoa(int(w.Score)))
  63. params.Set("tid", strconv.FormatInt(w.Tid, 10))
  64. params.Set("oid", strconv.FormatInt(w.Oid, 10))
  65. params.Set("aid", strconv.FormatInt(w.Aid, 10))
  66. params.Set("mid", strconv.FormatInt(w.Mid, 10))
  67. if w.Tid == _subtitleReportTagReasonID {
  68. params.Set("description", w.Description)
  69. }
  70. params.Set("business_typeid", strconv.Itoa(int(w.BusinessTypeID)))
  71. params.Set("business_title", w.BusinessTitle)
  72. params.Set("business_mid", strconv.FormatInt(w.BusinessMid, 10))
  73. if w.Extra != nil {
  74. if bs, err = json.Marshal(w.Extra); err == nil {
  75. params.Set("business_extra", string(bs))
  76. }
  77. }
  78. return
  79. }