|  |  |  | 
|---|
|  |  |  | package com.genersoft.iot.vmp.gb28181.bean; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.genersoft.iot.vmp.gb28181.utils.MessageElement; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import javax.validation.constraints.NotNull; | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 设备信息查询响应 | 
|---|
|  |  |  | 
|---|
|  |  |  | * @version 1.0 | 
|---|
|  |  |  | * @date 2022/6/28 14:55 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | public class DragZoomRequest { | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 序列号 | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 基本参数 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | public static class DragZoom { | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 播放窗口长度像素值 | 
|---|
|  |  |  | 
|---|
|  |  |  | @MessageElement("LengthY") | 
|---|
|  |  |  | protected Integer lengthY; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public Integer getLength() { | 
|---|
|  |  |  | return length; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setLength(Integer length) { | 
|---|
|  |  |  | this.length = length; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public Integer getWidth() { | 
|---|
|  |  |  | return width; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setWidth(Integer width) { | 
|---|
|  |  |  | this.width = width; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public Integer getMidPointX() { | 
|---|
|  |  |  | return midPointX; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setMidPointX(Integer midPointX) { | 
|---|
|  |  |  | this.midPointX = midPointX; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public Integer getMidPointY() { | 
|---|
|  |  |  | return midPointY; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setMidPointY(Integer midPointY) { | 
|---|
|  |  |  | this.midPointY = midPointY; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public Integer getLengthX() { | 
|---|
|  |  |  | return lengthX; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setLengthX(Integer lengthX) { | 
|---|
|  |  |  | this.lengthX = lengthX; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public Integer getLengthY() { | 
|---|
|  |  |  | return lengthY; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setLengthY(Integer lengthY) { | 
|---|
|  |  |  | this.lengthY = lengthY; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getSn() { | 
|---|
|  |  |  | return sn; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setSn(String sn) { | 
|---|
|  |  |  | this.sn = sn; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getDeviceId() { | 
|---|
|  |  |  | return deviceId; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setDeviceId(String deviceId) { | 
|---|
|  |  |  | this.deviceId = deviceId; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public DragZoom getDragZoomIn() { | 
|---|
|  |  |  | return dragZoomIn; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setDragZoomIn(DragZoom dragZoomIn) { | 
|---|
|  |  |  | this.dragZoomIn = dragZoomIn; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public DragZoom getDragZoomOut() { | 
|---|
|  |  |  | return dragZoomOut; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setDragZoomOut(DragZoom dragZoomOut) { | 
|---|
|  |  |  | this.dragZoomOut = dragZoomOut; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|