648540858
2023-10-07 c084d6c98af1ef4d36a61adc719df5db76589428
src/main/java/com/genersoft/iot/vmp/gb28181/bean/DragZoomRequest.java
@@ -1,10 +1,6 @@
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;
/**
 * 设备信息查询响应
@@ -13,7 +9,6 @@
 * @version 1.0
 * @date 2022/6/28 14:55
 */
@Data
public class DragZoomRequest {
    /**
     * 序列号
@@ -33,7 +28,6 @@
    /**
     * 基本参数
     */
    @Data
    public static class DragZoom {
        /**
         * 播放窗口长度像素值
@@ -66,5 +60,84 @@
        @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;
    }
}