蛋蛋星球 后台端
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 

118 рядки
5.5 KiB

  1. package md
  2. type NoticeListReq struct {
  3. Page string `json:"page,required"` // 页数
  4. Limit string `json:"limit,required"` // 每页大小
  5. }
  6. type NoticeListResp struct {
  7. Total int64 `json:"total"`
  8. SelectData []map[string]string `json:"select_data"`
  9. ChangeData []map[string]string `json:"change_data"`
  10. List []NoticeList `json:"list"`
  11. }
  12. type NoticeList struct {
  13. Id string `json:"id"`
  14. Title string `json:"title"`
  15. Content string `json:"content"`
  16. Type string `json:"type"`
  17. JpushOpen string `json:"jpush_open" example:"app推送开启 0关 1开"`
  18. SmsOpen string `json:"sms_open" example:"短信推送开启 0关 1开"`
  19. SmsCode string `json:"sms_code" example:"短信模板id"`
  20. Day string `json:"day" example:" xxx小时(未签到/未登录) 隔 xx小时通知一次 (这里是 X小时,type=sign/login 的时候要显示前面的话填写 sign是未签到 login是未登录)"`
  21. NoticeDay string `json:"notice_day" example:" xxx小时(未签到/未登录) 隔 xx小时通知一次 (这里是 隔 xx小时,type=sign/login 的时候要显示前面的话填写 sign是未签到 login是未登录)"`
  22. }
  23. type NoticeSaveReq struct {
  24. Id string `json:"id"`
  25. Title string `json:"title"`
  26. Content string `json:"content"`
  27. Type string `json:"type"`
  28. JpushOpen string `json:"jpush_open" example:"app推送开启 0关 1开"`
  29. SmsOpen string `json:"sms_open" example:"短信推送开启 0关 1开"`
  30. SmsCode string `json:"sms_code" example:"短信模板id"`
  31. Day string `json:"day" example:" xxx小时(未签到/未登录) 隔 xx小时通知一次 (这里是 X小时,type=sign/login 的时候要显示前面的话填写 sign是未签到 login是未登录)"`
  32. NoticeDay string `json:"notice_day" example:" xxx小时(未签到/未登录) 隔 xx小时通知一次 (这里是 隔 xx小时,type=sign/login 的时候要显示前面的话填写 sign是未签到 login是未登录)"`
  33. }
  34. type NoticeDelReq struct {
  35. Id []string `json:"id"`
  36. }
  37. type NoticePushListResp struct {
  38. Total int64 `json:"total"`
  39. PlatformData []map[string]string `json:"platform_data"`
  40. TargetData []map[string]string `json:"target_data"`
  41. List []NoticePushList `json:"list"`
  42. }
  43. type NoticePushList struct {
  44. Id string `json:"id"`
  45. Title string `json:"title"`
  46. Content string `json:"content"`
  47. Platform string `json:"platform"`
  48. Target string `json:"target"`
  49. SendType string `json:"send_type" example:"0立即推送 1定时推送"`
  50. SendStartTime string `json:"send_start_time" example:"如 2024-11-25 11:56:00"`
  51. SendEndTime string `json:"send_end_time" example:"如 2024-11-25 11:56:00"`
  52. State string `json:"state" example:"0待发送 1发送成功"`
  53. }
  54. type NoticePushSaveReq struct {
  55. Id string `json:"id"`
  56. Title string `json:"title"`
  57. Content string `json:"content"`
  58. Platform string `json:"platform"`
  59. Target string `json:"target"`
  60. SendType string `json:"send_type"`
  61. SendStartTime string `json:"send_start_time"`
  62. SendEndTime string `json:"send_end_time"`
  63. UserList []string `json:"user_list"`
  64. Level string `json:"level"`
  65. }
  66. type NoticeAliyunSmsListReq struct {
  67. Page string `json:"page,required"` // 页数
  68. Limit string `json:"limit,required"` // 每页大小
  69. }
  70. type NoticeAliyunSmsListResp struct {
  71. Total int64 `json:"total"`
  72. SelectData []map[string]string `json:"select_data"`
  73. List []NoticeAliyunSmsList `json:"list"`
  74. }
  75. type NoticeAliyunSmsList struct {
  76. Id string `json:"id"`
  77. Title string `json:"title"`
  78. Content string `json:"content" example:"这是 填短信模板id"`
  79. Type string `json:"type"`
  80. IsShow string `json:"is_show"`
  81. Day string `json:"day" example:" xxx小时(未签到/未登录) 隔 xx小时通知一次 (这里是 X小时,type=sign/login 的时候要显示前面的话填写 sign是未签到 login是未登录)"`
  82. NoticeDay string `json:"notice_day" example:" xxx小时(未签到/未登录) 隔 xx小时通知一次 (这里是 隔 xx小时,type=sign/login 的时候要显示前面的话填写 sign是未签到 login是未登录)"`
  83. }
  84. type NoticeAliyunSmsSaveReq struct {
  85. Id string `json:"id"`
  86. Title string `json:"title"`
  87. Content string `json:"content"`
  88. IsShow string `json:"is_show"`
  89. Type string `json:"type"`
  90. Day string `json:"day" example:" xxx小时(未签到/未登录) 隔 xx小时通知一次 (这里是 X小时,type=sign/login 的时候要显示前面的话填写 sign是未签到 login是未登录)"`
  91. NoticeDay string `json:"notice_day" example:" xxx小时(未签到/未登录) 隔 xx小时通知一次 (这里是 隔 xx小时,type=sign/login 的时候要显示前面的话填写 sign是未签到 login是未登录)"`
  92. }
  93. type NoticeAliyunSmsDelReq struct {
  94. Id []string `json:"id"`
  95. }
  96. type NoticeAliyunSmsPushListResp struct {
  97. Total int64 `json:"total"`
  98. TargetData []map[string]string `json:"target_data"`
  99. List []NoticeAliyunSmsPushList `json:"list"`
  100. }
  101. type NoticeAliyunSmsPushList struct {
  102. Id string `json:"id"`
  103. Title string `json:"title"`
  104. Content string `json:"content"`
  105. Target string `json:"target"`
  106. State string `json:"state" example:"0待发送 1发送成功"`
  107. }
  108. type NoticeAliyunSmsPushSaveReq struct {
  109. Id string `json:"id"`
  110. Title string `json:"title"`
  111. Content string `json:"content"`
  112. Target string `json:"target"`
  113. PhoneList []string `json:"phone_list"`
  114. Level string `json:"level"`
  115. }