media.go 573 B

12345678910111213141516171819202122232425262728
  1. package request
  2. type AudioReq struct {
  3. AudioId int
  4. AudioName string
  5. AnalystId int
  6. AnalystName string
  7. SrcUrl string
  8. PermissionIds string
  9. DurationMillisecond int
  10. }
  11. type VideoReq struct {
  12. VideoId int
  13. VideoName string
  14. AnalystId int
  15. AnalystName string
  16. CoverSrc string
  17. SrcUrl string
  18. PermissionIds string
  19. DurationMillisecond int
  20. }
  21. type ImageReq struct {
  22. ImageId int
  23. ImageName string
  24. SrcUrl string
  25. PermissionId int
  26. }