param.go 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package model
  2. import xtime "go-common/library/time"
  3. // ArgPage define page param.
  4. type ArgPage struct {
  5. PN int64 `form:"pn" default:"1"`
  6. PS int64 `form:"ps" validate:"min=0,max=30" default:"30"`
  7. }
  8. // ArgBlockedNumUser user blocked number param.
  9. type ArgBlockedNumUser struct {
  10. MID int64 `form:"mid" validate:"required"`
  11. }
  12. // ResBlockedNumUser user blocked number result.
  13. type ResBlockedNumUser struct {
  14. BlockedSum int `json:"blockedSum"`
  15. }
  16. // ArgIDs ids param.
  17. type ArgIDs struct {
  18. IDs []int64 `form:"ids,split" validate:"min=0,max=100"`
  19. }
  20. // ArgMIDs mids param.
  21. type ArgMIDs struct {
  22. MIDs []int64 `form:"mids,split" validate:"min=0,max=100"`
  23. }
  24. // ResJuryerStatus blocked juryer status result.
  25. type ResJuryerStatus struct {
  26. Expired xtime.Time `json:"expired"`
  27. Mid int64 `json:"mid"`
  28. Status int8 `json:"status"`
  29. }
  30. // ArgJudgeBlocked judge blocked param.
  31. type ArgJudgeBlocked struct {
  32. MID int64 `form:"mid" validate:"required"`
  33. OID int64 `form:"oper_id" default:"0"`
  34. BDays int `form:"blocked_days" default:"0"`
  35. BForever int8 `form:"blocked_forever" default:"0"`
  36. BRemark string `form:"blocked_remark" default:""`
  37. MoralNum int `form:"moral_num" default:"0"`
  38. OContent string `form:"origin_content" default:""`
  39. OTitle string `form:"origin_title" default:""`
  40. OType int8 `form:"origin_type" validate:"min=1,max=20"`
  41. OURL string `form:"origin_url" default:""`
  42. PTime int64 `form:"punish_time" validate:"required"`
  43. PType int8 `form:"punish_type" validate:"min=1,max=10"`
  44. RType int8 `form:"reason_type" validate:"min=1,max=40"`
  45. OPName string `form:"operator_name" default:""`
  46. }
  47. // ArgJudgeBatchBlocked judge batch blocked param.
  48. type ArgJudgeBatchBlocked struct {
  49. MID []int64 `form:"mids,split" validate:"min=1,max=200"`
  50. OID int64 `form:"oper_id" default:"0"`
  51. BDays int `form:"blocked_days" default:"0"`
  52. BForever int8 `form:"blocked_forever" default:"0"`
  53. BRemark string `form:"blocked_remark" default:""`
  54. MoralNum int `form:"moral_num" default:"0"`
  55. OContent string `form:"origin_content" default:""`
  56. OTitle string `form:"origin_title" default:""`
  57. OType int8 `form:"origin_type" validate:"min=1,max=20"`
  58. OURL string `form:"origin_url" default:""`
  59. PTime int64 `form:"punish_time" validate:"required"`
  60. PType int8 `form:"punish_type" validate:"min=1,max=10"`
  61. RType int8 `form:"reason_type" validate:"min=1,max=40"`
  62. OPName string `form:"operator_name" default:""`
  63. }
  64. // ArgHistory blocked historys param.
  65. type ArgHistory struct {
  66. MID int64 `form:"mid" validate:"required"`
  67. STime int64 `form:"start" validate:"required"`
  68. PN int `form:"pn" default:"1"`
  69. PS int `form:"ps" validate:"min=0,max=100" default:"100"`
  70. }
  71. // ResBLKHistorys blocked historys result.
  72. type ResBLKHistorys struct {
  73. TotalCount int64 `json:"total_count"`
  74. PN int `json:"pn"`
  75. PS int `json:"ps"`
  76. Items []*BlockedInfo `json:"items"`
  77. }
  78. // ArgJudgeCase judge case param.
  79. type ArgJudgeCase struct {
  80. AID int64 `json:"aid"`
  81. MID int64 `json:"mid"`
  82. Operator string `json:"operator"`
  83. OperID int64 `json:"oper_id"`
  84. OContent string `json:"origin_content"`
  85. OTitle string `json:"origin_title"`
  86. OType int64 `json:"origin_type"`
  87. OURL string `json:"origin_url"`
  88. ReasonType int64 `json:"reason_type"`
  89. OID int64 `json:"oid"`
  90. RPID int64 `json:"rp_id"`
  91. TagID int64 `json:"tag_id"`
  92. Type int64 `json:"type"`
  93. Page int64 `json:"page"`
  94. BCTime xtime.Time `json:"business_time"`
  95. RelationID string `json:"-"`
  96. PunishResult int8 `json:"-"`
  97. BlockedDays int32 `json:"-"`
  98. }
  99. // ArgDElQS labour question del param.
  100. type ArgDElQS struct {
  101. ID int64 `form:"id" validate:"required"`
  102. IsDel int64 `form:"is_del" validate:"min=1,max=3"`
  103. }
  104. // ArgBlockedList blocked list param.
  105. type ArgBlockedList struct {
  106. OType int8 `form:"otype" default:"0"`
  107. BType int8 `form:"btype" default:"-1"`
  108. PN int `form:"pn" validate:"min=1" default:"1"`
  109. PS int `form:"ps" default:"20"`
  110. }