VodPlayAuthDto.java 957 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package com.ruoyi.common.vod;
  2. public class VodPlayAuthDto {
  3. private String playAuth;
  4. private String videoId;
  5. private String requestId;
  6. private String title;
  7. private String coverUrl;
  8. public String getPlayAuth() {
  9. return playAuth;
  10. }
  11. public void setPlayAuth(String playAuth) {
  12. this.playAuth = playAuth;
  13. }
  14. public String getVideoId() {
  15. return videoId;
  16. }
  17. public void setVideoId(String videoId) {
  18. this.videoId = videoId;
  19. }
  20. public String getRequestId() {
  21. return requestId;
  22. }
  23. public void setRequestId(String requestId) {
  24. this.requestId = requestId;
  25. }
  26. public String getTitle() {
  27. return title;
  28. }
  29. public void setTitle(String title) {
  30. this.title = title;
  31. }
  32. public String getCoverUrl() {
  33. return coverUrl;
  34. }
  35. public void setCoverUrl(String coverUrl) {
  36. this.coverUrl = coverUrl;
  37. }
  38. }