| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.inspur.domain.partywork;
- import lombok.Data;
- /**
- * 远程控制-图片移动请求参数
- *
- * @author lihao16
- */
- @Data
- public class ImageMoveReqVo {
- /**
- * 移动方向 1-上 2-下
- */
- private Integer direction;
- /**
- * 会议ID
- */
- private Long meetingId;
- /**
- * 移动距离
- */
- private Integer distance;
- /**
- * 设备ID
- */
- private Long deviceId;
- /**
- * 图片索引
- */
- private Integer imageIndex;
- /**
- * 缩放比例
- */
- private Integer scale;
- /**
- * 控制类型 1-图片移动 2-外部链接
- */
- private Integer controlType;
- }
|