ImageMoveReqVo.java 670 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.inspur.domain.partywork;
  2. import lombok.Data;
  3. /**
  4. * 远程控制-图片移动请求参数
  5. *
  6. * @author lihao16
  7. */
  8. @Data
  9. public class ImageMoveReqVo {
  10. /**
  11. * 移动方向 1-上 2-下
  12. */
  13. private Integer direction;
  14. /**
  15. * 会议ID
  16. */
  17. private Long meetingId;
  18. /**
  19. * 移动距离
  20. */
  21. private Integer distance;
  22. /**
  23. * 设备ID
  24. */
  25. private Long deviceId;
  26. /**
  27. * 图片索引
  28. */
  29. private Integer imageIndex;
  30. /**
  31. * 缩放比例
  32. */
  33. private Integer scale;
  34. /**
  35. * 控制类型 1-图片移动 2-外部链接
  36. */
  37. private Integer controlType;
  38. }