wangmengmeng
2024-12-24 24432a361d5c6bd6f3d8c008693e9f1155d62517
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
package com.dji.sdk.cloudapi.device;
 
import com.dji.sdk.annotations.CloudSDKVersion;
import com.dji.sdk.config.version.GatewayTypeEnum;
 
import java.util.List;
 
/**
 * @author sean
 * @version 1.0
 * @date 2022/5/6
 */
public class DockDronePayload {
 
    private PayloadIndex payloadIndex;
 
    private Float gimbalPitch;
 
    private Float gimbalRoll;
 
    private Float gimbalYaw;
 
    private Float measureTargetAltitude;
 
    private Float measureTargetDistance;
 
    private Float measureTargetLatitude;
 
    private Float measureTargetLongitude;
 
    private MeasureTargetStateEnum measureTargetErrorState;
 
    private Integer version;
 
    private ThermalPaletteStyleEnum thermalCurrentPaletteStyle;
 
    private ThermalGainModeEnum thermalGainMode;
 
    private Float thermalGlobalTemperatureMax;
 
    private Float thermalGlobalTemperatureMin;
 
    private Integer thermalIsothermLowerLimit;
 
    private SwitchActionEnum thermalIsothermState;
 
    private Integer thermalIsothermUpperLimit;
 
    private List<SmartTrackPoint> smartTrackPoint;
 
    @CloudSDKVersion(include = GatewayTypeEnum.DOCK2)
    private Float zoomFactor;
 
    public DockDronePayload() {
    }
 
    @Override
    public String toString() {
        return "DockDronePayload{" +
                "payloadIndex=" + payloadIndex +
                ", gimbalPitch=" + gimbalPitch +
                ", gimbalRoll=" + gimbalRoll +
                ", gimbalYaw=" + gimbalYaw +
                ", measureTargetAltitude=" + measureTargetAltitude +
                ", measureTargetDistance=" + measureTargetDistance +
                ", measureTargetLatitude=" + measureTargetLatitude +
                ", measureTargetLongitude=" + measureTargetLongitude +
                ", measureTargetErrorState=" + measureTargetErrorState +
                ", version=" + version +
                ", thermalCurrentPaletteStyle=" + thermalCurrentPaletteStyle +
                ", thermalGainMode=" + thermalGainMode +
                ", thermalGlobalTemperatureMax=" + thermalGlobalTemperatureMax +
                ", thermalGlobalTemperatureMin=" + thermalGlobalTemperatureMin +
                ", thermalIsothermLowerLimit=" + thermalIsothermLowerLimit +
                ", thermalIsothermState=" + thermalIsothermState +
                ", thermalIsothermUpperLimit=" + thermalIsothermUpperLimit +
                ", smartTrackPoint=" + smartTrackPoint +
                ", zoomFactor=" + zoomFactor +
                '}';
    }
 
    public PayloadIndex getPayloadIndex() {
        return payloadIndex;
    }
 
    public DockDronePayload setPayloadIndex(PayloadIndex payloadIndex) {
        this.payloadIndex = payloadIndex;
        return this;
    }
 
    public Float getGimbalPitch() {
        return gimbalPitch;
    }
 
    public DockDronePayload setGimbalPitch(Float gimbalPitch) {
        this.gimbalPitch = gimbalPitch;
        return this;
    }
 
    public Float getGimbalRoll() {
        return gimbalRoll;
    }
 
    public DockDronePayload setGimbalRoll(Float gimbalRoll) {
        this.gimbalRoll = gimbalRoll;
        return this;
    }
 
    public Float getGimbalYaw() {
        return gimbalYaw;
    }
 
    public DockDronePayload setGimbalYaw(Float gimbalYaw) {
        this.gimbalYaw = gimbalYaw;
        return this;
    }
 
    public Float getMeasureTargetAltitude() {
        return measureTargetAltitude;
    }
 
    public DockDronePayload setMeasureTargetAltitude(Float measureTargetAltitude) {
        this.measureTargetAltitude = measureTargetAltitude;
        return this;
    }
 
    public Float getMeasureTargetDistance() {
        return measureTargetDistance;
    }
 
    public DockDronePayload setMeasureTargetDistance(Float measureTargetDistance) {
        this.measureTargetDistance = measureTargetDistance;
        return this;
    }
 
    public Float getMeasureTargetLatitude() {
        return measureTargetLatitude;
    }
 
    public DockDronePayload setMeasureTargetLatitude(Float measureTargetLatitude) {
        this.measureTargetLatitude = measureTargetLatitude;
        return this;
    }
 
    public Float getMeasureTargetLongitude() {
        return measureTargetLongitude;
    }
 
    public DockDronePayload setMeasureTargetLongitude(Float measureTargetLongitude) {
        this.measureTargetLongitude = measureTargetLongitude;
        return this;
    }
 
    public MeasureTargetStateEnum getMeasureTargetErrorState() {
        return measureTargetErrorState;
    }
 
    public DockDronePayload setMeasureTargetErrorState(MeasureTargetStateEnum measureTargetErrorState) {
        this.measureTargetErrorState = measureTargetErrorState;
        return this;
    }
 
    public Integer getVersion() {
        return version;
    }
 
    public DockDronePayload setVersion(Integer version) {
        this.version = version;
        return this;
    }
 
    public ThermalPaletteStyleEnum getThermalCurrentPaletteStyle() {
        return thermalCurrentPaletteStyle;
    }
 
    public DockDronePayload setThermalCurrentPaletteStyle(ThermalPaletteStyleEnum thermalCurrentPaletteStyle) {
        this.thermalCurrentPaletteStyle = thermalCurrentPaletteStyle;
        return this;
    }
 
    public ThermalGainModeEnum getThermalGainMode() {
        return thermalGainMode;
    }
 
    public DockDronePayload setThermalGainMode(ThermalGainModeEnum thermalGainMode) {
        this.thermalGainMode = thermalGainMode;
        return this;
    }
 
    public Float getThermalGlobalTemperatureMax() {
        return thermalGlobalTemperatureMax;
    }
 
    public DockDronePayload setThermalGlobalTemperatureMax(Float thermalGlobalTemperatureMax) {
        this.thermalGlobalTemperatureMax = thermalGlobalTemperatureMax;
        return this;
    }
 
    public Float getThermalGlobalTemperatureMin() {
        return thermalGlobalTemperatureMin;
    }
 
    public DockDronePayload setThermalGlobalTemperatureMin(Float thermalGlobalTemperatureMin) {
        this.thermalGlobalTemperatureMin = thermalGlobalTemperatureMin;
        return this;
    }
 
    public Integer getThermalIsothermLowerLimit() {
        return thermalIsothermLowerLimit;
    }
 
    public DockDronePayload setThermalIsothermLowerLimit(Integer thermalIsothermLowerLimit) {
        this.thermalIsothermLowerLimit = thermalIsothermLowerLimit;
        return this;
    }
 
    public SwitchActionEnum getThermalIsothermState() {
        return thermalIsothermState;
    }
 
    public DockDronePayload setThermalIsothermState(SwitchActionEnum thermalIsothermState) {
        this.thermalIsothermState = thermalIsothermState;
        return this;
    }
 
    public Integer getThermalIsothermUpperLimit() {
        return thermalIsothermUpperLimit;
    }
 
    public DockDronePayload setThermalIsothermUpperLimit(Integer thermalIsothermUpperLimit) {
        this.thermalIsothermUpperLimit = thermalIsothermUpperLimit;
        return this;
    }
 
    public List<SmartTrackPoint> getSmartTrackPoint() {
        return smartTrackPoint;
    }
 
    public DockDronePayload setSmartTrackPoint(List<SmartTrackPoint> smartTrackPoint) {
        this.smartTrackPoint = smartTrackPoint;
        return this;
    }
 
    public Float getZoomFactor() {
        return zoomFactor;
    }
 
    public DockDronePayload setZoomFactor(Float zoomFactor) {
        this.zoomFactor = zoomFactor;
        return this;
    }
}