蛋蛋星球 后台端
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.
 
 
 
 

110 lines
4.5 KiB

  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 req body true "参数 file-----文件上传格式"
  14. // @Success 200 {object} "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. // AliyunSmsBase
  21. // @Summary 消息中心-短信推送记录-通知模板
  22. // @Tags 消息中心
  23. // @Description 短信推送记录-通知模板
  24. // @Accept json
  25. // @Produce json
  26. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  27. // @Success 200 {object} md.NoticeAliyunSmsListResp "具体数据"
  28. // @Failure 400 {object} md.Response "具体错误"
  29. // @Router /api/notice/aliyunSms/base [get]
  30. func AliyunSmsBase(c *gin.Context) {
  31. notice.AliyunSmsBase(c)
  32. }
  33. // AliyunSmsSave
  34. // @Summary 消息中心-短信推送记录-通知模板添加编辑
  35. // @Tags 消息中心
  36. // @Description 短信推送记录-通知模板添加编辑
  37. // @Accept json
  38. // @Produce json
  39. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  40. // @Param req body true "数组 把列表的数组传过来"
  41. // @Success 200 {string} "具体数据"
  42. // @Failure 400 {object} md.Response "具体错误"
  43. // @Router /api/notice/aliyunSms/save [post]
  44. func AliyunSmsSave(c *gin.Context) {
  45. notice.AliyunSmsSave(c)
  46. }
  47. // AliyunSmsSaleBase
  48. // @Summary 消息中心-短信推送记录-营销短信-通知模板
  49. // @Tags 消息中心
  50. // @Description 短信推送记录-营销短信-通知模板
  51. // @Accept json
  52. // @Produce json
  53. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  54. // @Success 200 {object} md.NoticeAliyunSmsListResp "具体数据"
  55. // @Failure 400 {object} md.Response "具体错误"
  56. // @Router /api/notice/aliyunSms/sale/base [get]
  57. func AliyunSmsSaleBase(c *gin.Context) {
  58. notice.AliyunSmsSaleBase(c)
  59. }
  60. // AliyunSmsSaleSave
  61. // @Summary 消息中心-短信推送记录-营销短信-通知模板添加编辑
  62. // @Tags 消息中心
  63. // @Description 短信推送记录-营销短信-通知模板添加编辑
  64. // @Accept json
  65. // @Produce json
  66. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  67. // @Param req body true "数组 把列表的数组传过来"
  68. // @Success 200 {string} "具体数据"
  69. // @Failure 400 {object} md.Response "具体错误"
  70. // @Router /api/notice/aliyunSms/sale/save [post]
  71. func AliyunSmsSaleSave(c *gin.Context) {
  72. notice.AliyunSmsSaleSave(c)
  73. }
  74. // AliyunSmsPushList
  75. // @Summary 消息中心-短信推送记录-推送记录列表
  76. // @Tags 消息中心
  77. // @Description 短信推送记录-推送记录列表
  78. // @Accept json
  79. // @Produce json
  80. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  81. // @Param req body md.NoticeAliyunSmsListReq true "(分页信息必填)"
  82. // @Success 200 {object} md.NoticePushListResp "具体数据"
  83. // @Failure 400 {object} md.Response "具体错误"
  84. // @Router /api/notice/aliyunSms/push/list [post]
  85. func AliyunSmsPushList(c *gin.Context) {
  86. notice.AliyunSmsPushList(c)
  87. }
  88. // AliyunSmsPushSave
  89. // @Summary 消息中心-短信推送记录-推送记录添加-发送(不做编辑了)
  90. // @Tags 消息中心
  91. // @Description 短信推送记录-推送记录添加-发送 (不做编辑了)
  92. // @Accept json
  93. // @Produce json
  94. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  95. // @Param req body md.NoticeAliyunSmsSaveReq true "(分页信息必填)"
  96. // @Success 200 {string} "具体数据"
  97. // @Failure 400 {object} md.Response "具体错误"
  98. // @Router /api/notice/aliyunSms/push/save [post]
  99. func AliyunSmsPushSave(c *gin.Context) {
  100. notice.AliyunSmsPushSave(c)
  101. }