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

md_certificate.go 1.1 KiB

1 week ago
1234567891011121314151617181920212223242526272829303132333435
  1. package md
  2. type CertificateListReq struct {
  3. Page string `json:"page"`
  4. Limit string `json:"limit"`
  5. Phone string `json:"phone"`
  6. Uid string `json:"uid"`
  7. }
  8. type CertificateListResp struct {
  9. Total int64 `json:"total"`
  10. List []CertificateList `json:"list"`
  11. }
  12. type CertificateDelReq struct {
  13. Id []string `json:"id"`
  14. }
  15. type CertificateList struct {
  16. Id string `json:"id" `
  17. No string `json:"no" example:"编号"`
  18. Name string `json:"name" example:"姓名"`
  19. StartTime string `json:"start_time" example:"开始时间"`
  20. EndTime string `json:"end_time" example:"结束时间"`
  21. Logo string `json:"logo" example:"logo"`
  22. BgImg string `json:"bg_img" example:"背景图"`
  23. NameIcon string `json:"name_icon" example:"蛋蛋星球文字图"`
  24. Medal string `json:"medal" example:"勋章"`
  25. Seal string `json:"seal" example:"印章"`
  26. }
  27. type CertificateSave struct {
  28. Id string `json:"id" `
  29. No string `json:"no" example:"编号"`
  30. Name string `json:"name" example:"姓名"`
  31. StartTime string `json:"start_time" example:"开始时间"`
  32. EndTime string `json:"end_time" example:"结束时间"`
  33. }