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

39 lines
1.2 KiB

  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. Uid string `json:"uid"`
  18. Phone string `json:"phone"`
  19. No string `json:"no" example:"编号"`
  20. Name string `json:"name" example:"姓名"`
  21. StartTime string `json:"start_time" example:"开始时间"`
  22. EndTime string `json:"end_time" example:"结束时间"`
  23. Logo string `json:"logo" example:"logo"`
  24. BgImg string `json:"bg_img" example:"背景图"`
  25. NameIcon string `json:"name_icon" example:"蛋蛋星球文字图"`
  26. Medal string `json:"medal" example:"勋章"`
  27. Seal string `json:"seal" example:"印章"`
  28. }
  29. type CertificateSave struct {
  30. Id string `json:"id" `
  31. Uid string `json:"uid"`
  32. No string `json:"no" example:"编号"`
  33. Name string `json:"name" example:"姓名"`
  34. StartTime string `json:"start_time" example:"开始时间"`
  35. EndTime string `json:"end_time" example:"结束时间"`
  36. }