648540858
2023-09-11 88350873ee7632924cb135a450fef9f4d05c5306
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package com.genersoft.iot.vmp.gb28181.bean;
 
import com.genersoft.iot.vmp.gb28181.utils.MessageElement;
 
/**
 * 设备信息查询响应
 *
 * @author Y.G
 * @version 1.0
 * @date 2022/6/28 14:55
 */
public class HomePositionRequest {
    /**
     * 序列号
     */
    @MessageElement("SN")
    private String sn;
 
    @MessageElement("DeviceID")
    private String deviceId;
 
    @MessageElement(value = "HomePosition")
    private HomePosition homePosition;
 
 
    /**
     * 基本参数
     */
    public static class HomePosition {
        /**
         * 播放窗口长度像素值
         */
        @MessageElement("Enabled")
        protected String enabled;
        /**
         * 播放窗口宽度像素值
         */
        @MessageElement("ResetTime")
        protected String resetTime;
        /**
         * 拉框中心的横轴坐标像素值
         */
        @MessageElement("PresetIndex")
        protected String presetIndex;
 
        public String getEnabled() {
            return enabled;
        }
 
        public void setEnabled(String enabled) {
            this.enabled = enabled;
        }
 
        public String getResetTime() {
            return resetTime;
        }
 
        public void setResetTime(String resetTime) {
            this.resetTime = resetTime;
        }
 
        public String getPresetIndex() {
            return presetIndex;
        }
 
        public void setPresetIndex(String presetIndex) {
            this.presetIndex = presetIndex;
        }
    }
 
    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 HomePosition getHomePosition() {
        return homePosition;
    }
 
    public void setHomePosition(HomePosition homePosition) {
        this.homePosition = homePosition;
    }
}