蛋蛋星球 后台端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hdl_aliyun_sms.go 5.2 KiB

3 days ago
3 days ago
3 days ago
3 days ago
3 days ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. package notice
  2. import (
  3. "applet/app/svc/notice"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // AliyunSmsFilePhone
  7. // @Summary 消息中心-短信推送记录-通知模板
  8. // @Tags 消息中心
  9. // @Description 短信推送记录-通知模板
  10. // @Accept json
  11. // @Produce json
  12. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  13. // @Param file formData string true "参数 file-----文件上传格式"
  14. // @Success 200 {string} "phone 一个数组"
  15. // @Failure 400 {object} md.Response "具体错误"
  16. // @Router /api/notice/aliyunSms/file/phone [post]
  17. func AliyunSmsFilePhone(c *gin.Context) {
  18. notice.AliyunSmsFilePhone(c)
  19. }
  20. // AliyunSmsList
  21. // @Summary 消息中心-短信推送记录-通知模板(跟app推送记录的通知模板一样的效果)
  22. // @Tags 消息中心
  23. // @Description 短信推送记录-通知模板
  24. // @Accept json
  25. // @Produce json
  26. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  27. // @Param req body md.NoticeAliyunSmsListReq true "(分页信息必填)"
  28. // @Success 200 {object} md.NoticeAliyunSmsListResp "具体数据"
  29. // @Failure 400 {object} md.Response "具体错误"
  30. // @Router /api/notice/aliyunSms/list [get]
  31. func AliyunSmsList(c *gin.Context) {
  32. notice.AliyunSmsList(c)
  33. }
  34. // AliyunSmsSave
  35. // @Summary 消息中心-短信推送记录-通知模板添加编辑
  36. // @Tags 消息中心
  37. // @Description 短信推送记录-通知模板添加编辑
  38. // @Accept json
  39. // @Produce json
  40. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  41. // @Param req body md.NoticeAliyunSmsSaveReq true "参数"
  42. // @Success 200 {string} "具体数据"
  43. // @Failure 400 {object} md.Response "具体错误"
  44. // @Router /api/notice/aliyunSms/save [post]
  45. func AliyunSmsSave(c *gin.Context) {
  46. notice.AliyunSmsSave(c)
  47. }
  48. // AliyunSmsDel
  49. // @Summary 消息中心-短信推送记录-通知模板删除
  50. // @Tags 消息中心
  51. // @Description 短信推送记录-通知模板删除
  52. // @Accept json
  53. // @Produce json
  54. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  55. // @Param req body md.NoticeDelReq true "(分页信息必填)"
  56. // @Success 200 {string} "具体数据"
  57. // @Failure 400 {object} md.Response "具体错误"
  58. // @Router /api/notice/aliyunSms/del [post]
  59. func AliyunSmsDel(c *gin.Context) {
  60. notice.AliyunSmsDel(c)
  61. }
  62. // AliyunSmsSaleBase
  63. // @Summary 消息中心-短信推送记录-营销短信-通知模板
  64. // @Tags 消息中心
  65. // @Description 短信推送记录-营销短信-通知模板
  66. // @Accept json
  67. // @Produce json
  68. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  69. // @Success 200 {object} md.NoticeAliyunSmsListResp "具体数据"
  70. // @Failure 400 {object} md.Response "具体错误"
  71. // @Router /api/notice/aliyunSms/sale/base [get]
  72. func AliyunSmsSaleBase(c *gin.Context) {
  73. notice.AliyunSmsSaleBase(c)
  74. }
  75. // AliyunSmsSaleSave
  76. // @Summary 消息中心-短信推送记录-营销短信-通知模板添加编辑
  77. // @Tags 消息中心
  78. // @Description 短信推送记录-营销短信-通知模板添加编辑
  79. // @Accept json
  80. // @Produce json
  81. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  82. // @Param req body string true "数组 把列表的数组传过来"
  83. // @Success 200 {string} "具体数据"
  84. // @Failure 400 {object} md.Response "具体错误"
  85. // @Router /api/notice/aliyunSms/sale/save [post]
  86. func AliyunSmsSaleSave(c *gin.Context) {
  87. notice.AliyunSmsSaleSave(c)
  88. }
  89. // AliyunSmsPushList
  90. // @Summary 消息中心-短信推送记录-推送记录列表
  91. // @Tags 消息中心
  92. // @Description 短信推送记录-推送记录列表
  93. // @Accept json
  94. // @Produce json
  95. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  96. // @Param req body md.NoticeAliyunSmsListReq true "(分页信息必填)"
  97. // @Success 200 {object} md.NoticePushListResp "具体数据"
  98. // @Failure 400 {object} md.Response "具体错误"
  99. // @Router /api/notice/aliyunSms/push/list [post]
  100. func AliyunSmsPushList(c *gin.Context) {
  101. notice.AliyunSmsPushList(c)
  102. }
  103. // AliyunSmsPushSave
  104. // @Summary 消息中心-短信推送记录-推送记录添加-发送(不做编辑了)
  105. // @Tags 消息中心
  106. // @Description 短信推送记录-推送记录添加-发送 (不做编辑了)
  107. // @Accept json
  108. // @Produce json
  109. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  110. // @Param req body md.NoticeAliyunSmsSaveReq true "(分页信息必填)"
  111. // @Success 200 {string} "具体数据"
  112. // @Failure 400 {object} md.Response "具体错误"
  113. // @Router /api/notice/aliyunSms/push/save [post]
  114. func AliyunSmsPushSave(c *gin.Context) {
  115. notice.AliyunSmsPushSave(c)
  116. }