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

52 lines
1.9 KiB

  1. package member_center
  2. import (
  3. svc "applet/app/svc/member_center"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // CertificateList
  7. // @Summary 会员中心-证书管理
  8. // @Tags 会员中心
  9. // @Description 会员中心-证书管理
  10. // @Accept json
  11. // @Produce json
  12. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  13. // @Param req body md.CertificateListReq true "(分页信息必填)"
  14. // @Success 200 {object} md.CertificateListResp "具体数据"
  15. // @Failure 400 {object} md.Response "具体错误"
  16. // @Router /api/memberCenter/certificate/list [post]
  17. func CertificateList(c *gin.Context) {
  18. svc.CertificateList(c)
  19. }
  20. // CertificateDel
  21. // @Summary 会员中心-证书管理-删除
  22. // @Tags 会员中心
  23. // @Description 会员中心-证书管理-删除
  24. // @Accept json
  25. // @Produce json
  26. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  27. // @Param req body md.CertificateDelReq true "(分页信息必填)"
  28. // @Success 200 {string} "具体数据"
  29. // @Failure 400 {object} md.Response "具体错误"
  30. // @Router /api/memberCenter/certificate/del [post]
  31. func CertificateDel(c *gin.Context) {
  32. svc.CertificateDel(c)
  33. }
  34. // CertificateSave
  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.CertificateSave true "(分页信息必填)"
  42. // @Success 200 {string} "具体数据"
  43. // @Failure 400 {object} md.Response "具体错误"
  44. // @Router /api/memberCenter/certificate/save [post]
  45. func CertificateSave(c *gin.Context) {
  46. svc.CertificateSave(c)
  47. }